2011-05-30 52 views
2
RequestError: Unable to upgrade OAuth request token to access token: 400, signature_invalid 

base_string:POST&https%3A%2F%2Fwww.google.com%2Faccounts%2FOAuthGetAccessToken&oauth_consumer_key%3Dcalendar-auth.appspot.com%26oauth_nonce%3D646112512717164%26oauth_signature_method%3DHMAC-SHA1%26oauth_timestamp%3D1306760936%26oauth_token%3D4%252F-cP-Ai1NzxDtLehvtzRbGd4SHZ1-%26oauth_verifier%3DPYGMYX8riH9AfpJvTEh_Ztzm%26oauth_version%3D1.0 

我是新來的Google Apps development.was試圖實施的OAuth在網絡application.When我打電話GetAccessToken()方法,那麼就說明上述error.Please幫助我出這frokm .... 我使用下面的代碼...:爲谷歌開發的OAuth應用程式發動機... Python的

class MainHandler(webapp.RequestHandler): 
    def get(self): 
     CONSUMER_KEY = 'xyz' 
     CONSUMER_SECRET = 'xyz' 
     SCOPES = ['https://docs.google.com/feeds/', 'https://www.google.com/calendar/feeds/'] # example of a multi-scoped token 

     client = gdata.docs.client.DocsClient(source='xyz') 

     oauth_callback_url = 'http://%s/get_access_token' % self.request.host 
     request_token = client.GetOAuthToken(
      SCOPES, oauth_callback_url, CONSUMER_KEY, consumer_secret=CONSUMER_SECRET) 
     memcache.add("rtoken",request_token,3600) 
     domain = 'default' # If on a Google Apps domain, use your domain (e.g. 'example.com'). 
     url = str(request_token.generate_authorization_url(google_apps_domain=domain)) 
     self.redirect(url) 

class AuthToken(webapp.RequestHandler): 
    def get(self): 
     client = gdata.docs.client.DocsClient(source='xyz') 
     saved_request_token = memcache.get("rtoken")   
     request_token = gdata.gauth.AuthorizeRequestToken(saved_request_token, self.request.uri) 
     self.response.out.write("Got the token") 
     access_token = client.GetAccessToken(request_token) 

回答

0
https://www.google.com/accounts/OAuthGetAccessToken 
{ 
oauth_consumer_key=calendar-auth.appspot.com 
oauth_nonce=646112512717164 
oauth_signature_method=HMAC-SHA1 
oauth_timestamp=1306760936 
oauth_token=4/-cP-Ai1NzxDtLehvtzRbGd4SHZ1- 
oauth_verifier=PYGMYX8riH9AfpJvTEh_Ztzm 
oauth_version=1.0 
} 

我會建議不要張貼OAuth憑證向公衆開放。

http://wiki.oauth.net/w/page/12238555/Signed-Callback-URLs,你應該張貼oauth_signature,但我沒有看到它在列表中

+0

耶對不起我的錯誤..我會照顧這個NXT時間....感謝您的回答...但我沒有得到如何給oauth_signature參數...我打電話給谷歌apis,併發送我的消費者密鑰和祕密作爲參數...我認爲谷歌apis將生成oauth_signature ....你能通過查看我的代碼來幫助我完成此操作..如何在請求中發佈oauth_signature ... :) – bitanalyzer 2011-05-31 09:03:13

相關問題