我遇到了Jawbone API的问题。当我使用https://github.com/karthikbgl/python-jawbone-up.git逐步完成oauth过程时,我可以成功接收授权码然后获得令牌。
def access_token(self, code, grant_type='authorization_code'):
'''
Get the access code for a user with a auth code.
'''
params = {
'code' : code,
'client_id' : self.client_id,
'client_secret' : self.client_secret,
'grant_type' : grant_type
}
context = {
'base_url': self.base_url,
'params' : urllib.urlencode(params)
}
headers = {
'Content-Type': 'application/x-www-form-urlencoded',
'Accept': 'application/json',
'X-Target-URI': 'https://jawbone.com',
'host': 'jawbone.com'
}
token_url = '{base_url}auth/oauth2/token/?{params}'.format(**context)
res = requests.get(token_url, headers=headers)
return res.json()
但是我收到的令牌总是一样的,当我用它来调用API时,我收到错误:
{"meta": {"code": 401, "error_detail": "You must be logged in to perform that action", "error_type": "authentication_error", "message": "Unauthorized"}, "data": {}}
此外,如果我使用名为access_jawbone的模块使用此代码:
params = urllib.urlencode({
'email': username,
'pwd': password,
'service': 'nudge'
})
tokenresponse = urllib2.urlopen(url, params)
我获得了一个可以访问API的有效令牌。
有谁知道为什么提供的oauth令牌不起作用
以下问题似乎解决了同样的问题,但我不明白答案或如何解决我的问题。 Jawbone UP API oAuth and Access Tokens
答案 0 :(得分:0)
我有同样的问题。我认为这个答案是正在发生的事情: https://stackoverflow.com/a/32984287/1732987
为了解决这个问题,我不得不通过浏览器注销所有Jawbone内容,从我的新应用程序数据库中删除访问令牌,并从一个干净的平板开始登录过程。