Last active
February 11, 2016 02:06
-
-
Save bpux/477607fa6cd20493af98 to your computer and use it in GitHub Desktop.
Another simple Python example with a real OAuth flow. This uses responses and the simple-salesforce lib
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import cgi | |
import requests | |
import json | |
from simple_salesforce import Salesforce | |
#login here: | |
#https://login.salesforce.com/services/oauth2/authorize?response_type=code&client_id=3MVG9A2kN3Bn17hsWsLDatw._IVMEUBoPKv.7ksp0tz7xLX4tWDVgyzwTCA7i_yTfP.qYuNOsSoPNcdVH6DuE&redirect_uri=http://localhost/cgi-bin/python/oauth.py | |
consumer_key = '3MVG9A2kN3Bn17hsWsLDatw._IVMEUBoPKv.7ksp0tz7xLX4tWDVgyzwTCA7i_yTfP.qYuNOsSoPNcdVH6DuE' | |
consumer_secret = '8779811613588378217' | |
request_token_url = 'https://login.salesforce.com/services/oauth2/token' | |
access_token_url = 'https://login.salesforce.com/services/oauth2/token' | |
redirect_uri = 'http://localhost/cgi-bin/python/oauth.py' | |
authorize_url = 'https://login.salesforce.com/services/oauth2/authorize' #?response_type=token&client_id='+consumer_key+'&redirect_uri='+redirect_uri | |
query = cgi.FieldStorage() | |
req = None | |
if 'login' in query: | |
print "Location: https://login.salesforce.com/services/oauth2/authorize?response_type=code&client_id="+consumer_key+"&redirect_uri="+redirect_uri | |
if 'code' in query: | |
code = query.getvalue('code') | |
data = { | |
'grant_type': 'authorization_code', | |
'redirect_uri': redirect_uri, | |
'code': code, | |
'client_id' : consumer_key, | |
'client_secret' : consumer_secret | |
} | |
headers = { | |
'content-type': 'application/x-www-form-urlencoded' | |
} | |
req = requests.post(access_token_url,data=data,headers=headers) | |
response = req.json() | |
sf = Salesforce(instance_url=response['instance_url'], session_id=response['access_token']) | |
records = sf.query("SELECT Id, Name, Email FROM Contact") | |
records = records['records'] | |
#print web page | |
print "Content-type: text/html" | |
print "<html><body>" | |
print "<h1>SELECT Id, Name, Email FROM Contact</h1>" | |
print "<table>" | |
print "<tr><td><b>Name</b></td><td><b>Email</b></td></tr>" | |
for record in records: | |
print "<tr><td>"+record['Name']+"</td><td>"+record['Email']+"</td></tr>" | |
print "</table>" | |
print "</body></html>" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment