我想生成令牌到谷歌API。我使用这个网址:https://oauth2.googleapis.com/token
本体为:
grant_type:authorization_code
client_id: ***********
client_secret:*********
code:code
我得到了回应
{
"error": "invalid_grant",
"error_description": "Malformed auth code."
}
有人能帮我生成令牌吗?
我想生成令牌到谷歌API。我使用这个网址:https://oauth2.googleapis.com/token
本体为:
grant_type:authorization_code
client_id: ***********
client_secret:*********
code:code
我得到了回应
{
"error": "invalid_grant",
"error_description": "Malformed auth code."
}
有人能帮我生成令牌吗?
1条答案
按热度按时间m528fe3b1#
我已经得到这个错误之前和之后尝试了一些事情,我想通了。你能试着添加
access_type: 'offline'
到你的请求正文吗?下面是
Node JS
中的一个示例:https://developers.google.com/identity/protocols/oauth2/web-server#node.js_7