我正在尝试在 Python 中访问 OAuth2(代码与http://code.google.com/p/google-api-ads-python/source/browse/trunk/examples/adspygoogle/adwords/v201302/misc/相同使用_oauth2.py?spec=svn139&r=139 ):
flow = OAuth2WebServerFlow(client_id='XXX',
client_secret='YYY',
scope='https://adwords.google.com/api/adwords',
user_agent='ZZZ')
authorize_url = flow.step1_get_authorize_url('urn:ietf:wg:oauth:2.0:oob')
code = raw_input('Code: ').strip()
credential = None
try:
credential = flow.step2_exchange(code) #<- error
except FlowExchangeError, e:
sys.exit('Authentication has failed: %s' % e)
这会在 step2_exchange 处产生“socket.error: [Errno 10054]”错误,并且 Python 会切断确切的消息。因此,在使用 OAuthplayground 检查密钥(以获得更好的错误消息)后,我得到了这个错误:
HTTP/1.1 400 Bad Request
Content-length: 37
X-xss-protection: 1; mode=block
X-content-type-options: nosniff
X-google-cache-control: remote-fetch
-content-encoding: gzip
Server: GSE
Via: HTTP/1.1 GWA
Pragma: no-cache
Cache-control: no-cache, no-store, max-age=0, must-revalidate
Date: Thu, 06 Jun 2013 13:54:29 GMT
X-frame-options: SAMEORIGIN
Content-type: application/json
Expires: Fri, 01 Jan 1990 00:00:00 GMT
{
"error" : "unauthorized_client"
}
我检查了 client_id (用于已安装的应用程序)和 client_secret 是否与 Google API 控制台(https://code.google.com/apis/console/)中指定的相同。
如果我在 OAuthPlayground 上完成整个过程,它将起作用,但如果我尝试使用由游乐场创建的令牌,则应用程序也会失败。
任何人都知道如何解决它?