postman 授权显示和视频360 API

w3nuxt5m  于 2023-02-04  发布在  Postman
关注(0)|答案(1)|浏览(155)

我想生成令牌到谷歌API。我使用这个网址:https://oauth2.googleapis.com/token
本体为:

grant_type:authorization_code
client_id: ***********
client_secret:*********
code:code

我得到了回应

{
    "error": "invalid_grant",
    "error_description": "Malformed auth code."
}

有人能帮我生成令牌吗?

m528fe3b

m528fe3b1#

我已经得到这个错误之前和之后尝试了一些事情,我想通了。你能试着添加access_type: 'offline'到你的请求正文吗?
下面是Node JS中的一个示例:https://developers.google.com/identity/protocols/oauth2/web-server#node.js_7

相关问题