如何在邮递员中从google api的refres令牌获取新的访问令牌
我正在尝试从 Google Drive api 的刷新令牌中获取新的访问令牌。在我的谷歌游乐场中,它可以工作,但是当我想在邮递员或我的代码中创建相同的请求时,它不起作用,并且我总是收到错误“无效的大类型”。我不知道找出什么问题。
I am trying to get new access token from my refresh token for google drive api. In my google playground it works but when I want to create the same request in postman or my code it doesn't work and I always get error "Invalid grand type". I don't know to find what is problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要了解 Oauth2 舞蹈分为三个步骤。
第一步是请求用户访问并获取授权码。
注意
&response_type=code
告诉服务器您想要返回授权码。请注意其中显示
&grant_type=authorization_code
的部分。这告诉服务器您正在向他们提供授权码。3 最后一步是刷新您的访问令牌。
注意
&grant_type=refresh_token
您正在告诉要发送它们的服务器刷新令牌。您发送的刷新令牌似乎具有错误的授权类型。
我有一个关于如何设置邮递员以使用 google oauth2 的视频
如何设置 Oauth2在 PostMan 中。
Google 3 Legged OAuth2 Flow
注意:由于最近的更改制作通过使用更安全的 OAuth 流,Google OAuth 交互更安全 urn:ietf:wg:oauth:2.0:oob 的重定向 uri 即将停止工作。
You need to understand that there is three steps to the Oauth2 dance.
step one is requesting access of the user and getting the authorization code.
Note
&response_type=code
tells the server you want an authorization code returned.Note the part where it says
&grant_type=authorization_code
. this tells the server you are giving them an authorization code.3 the final step is refreshing your access token.
Note
&grant_type=refresh_token
you are telling the server you are sending them a refresh token.You appear to be sending a refresh token with the wrong grant type.
I have a video on how to set up postman to use google oauth2
How to set up Oauth2 in PostMan.
Google 3 Legged OAuth2 Flow
Note: Due to a recent change with Making Google OAuth interactions safer by using more secure OAuth flows redirect uri of urn:ietf:wg:oauth:2.0:oob is going to stop working soon.