1
嘗試授權使用Salesforce使用代碼我的帳戶:獲取salesforce.com用的access_token Django和REST的API
data = {
'client_id': settings.CONSUMER_KEY,
'client_secret': settings.CONSUMER_SECRET,
'redirect_uri': 'https://DOMAIN.com/salesforce/auth/',
'grant_type': 'authorization_code',
}
data = urllib.urlencode(data)
result = urllib2.urlopen('https://SALESFORCEDOMAIN.com/services/oauth2/token', data).read()
但仍然得到錯誤的請求錯誤。我應該改變什麼?
你在說你的授權類型是授權碼,但你看起來並沒有在請求中包含代碼。 – superfell