未能使用Python对应用程序进行身份验证之后,我现在正试图使用pyjwt直接生成jwt,然后按照Google文档中的curl测试它,但是它也不起作用,因为我现在接收到:无效JWT: Token必须是一个短暂的令牌,并且在合理的时间范围内。
安装pyjwt后的Python 3中的代码:
>>> from datetime import datetime, timedelta
>>> import json
>>> import jwt
>>> json_file = json.load(open("google-project-credentials.json"))
>>> dt_now = datetime.datetime.utcnow()
>>> payload = { 'iss' : json_file['client_email'], 'scope' : 'https://www.googleapis.com/auth/tasks', 'aud' : 'https://www.googleapis.com/oauth2/v4/token', 'exp' : int((dt_now + datetime.timedelta(hours=1)).timestamp()), 'iat': int(dt_now.timestamp()) }
>>> jwt.encode(payload, json_file['private_key'], algorithm='RS256')
b'PYJWT_RESULT_HERE'然后,如Google文档中所述,我在bash中运行curl并粘贴前面的结果:
$ curl -d 'grant_type=urn%3Aietf%3Aparams%3Aoauth%3Agrant-type%3Ajwt-bearer&assertion=PYJWT_RESULT_HERE' https://www.googleapis.com/oauth2/v4/token然后收到以下错误:
{
"error": "invalid_grant",
"error_description": "Invalid JWT: Token must be a short-lived token and in a reasonable timeframe"
}我做错了什么?
谢谢!
发布于 2016-07-28 09:26:19
实际上,正如错误消息中所述,问题发生在错误生成的时代(我还不完全理解为什么):
>>> from datetime import datetime
>>> from calendar import timegm
>>> import json
>>> import jwt
>>> json_file = json.load(open("google-project-credentials.json"))
>>> payload = { 'iss' : json_file['client_email'], 'scope' : 'https://www.googleapis.com/auth/tasks', 'aud' : 'https://www.googleapis.com/oauth2/v4/token', 'exp' : timegm(datetime.utcnow().utctimetuple()) + 600, 'iat' : timegm(datetime.utcnow().utctimetuple()) }
>>> jwt.encode(payload, json_file['private_key'], algorithm='RS256')
b'PYJWT_RESULT_HERE'然后在Bash控制台中:
$ curl -d 'grant_type=urn%3Aietf%3Aparams%3Aoauth%3Agrant-type%3Ajwt-bearer&assertion=PYJWT_RESULT_HERE' https://www.googleapis.com/oauth2/v4/token
{
"access_token": "GOOGLE_ACCESS_TOKEN_YEAH",
"token_type": "Bearer",
"expires_in": 3600
}事实上,我很惊讶在这个问题上没有得到更多的帮助,因为我认为Google会参与其中;-(在开源项目上,支持实际上更好!)
https://stackoverflow.com/questions/38619766
复制相似问题