令牌访问中的 Google oAuth2 redirect_uri_mismatch

问题描述 投票:0回答:2

我正在尝试使用 Google oAuth2 从一次性代码访问令牌。但我在回复中收到一条错误消息

redirect_uri_mismatch
。不过我已经在控制台中添加了
redirect_uri

我的

Authorized redirect uri
为:

http://localhost:3020/api/users/google_oauth_store_token

我的要求:

Request URL = https://www.googleapis.com/oauth2/v3/token?code=xXXXxx&client_id=xxxxxx&client_secret=xxx&redirect_uri=http://localhost:3020/api/users/google_oauth_store_token&grant_type=authorization_code

我的回应:

  response = {
    "error": "redirect_uri_mismatch",
    "error_description": "Bad Request"
  }
oauth-2.0 token access-token
2个回答
0
投票

那是我的错误。我必须使用我在一次性重定向 uri 中使用过的

redirect_uri
。 Google 使用redirect_uri 之一来保留客户端源。


0
投票

解决办法是设置redirect_uri = "postmessage" !就是这样!

© www.soinside.com 2019 - 2024. All rights reserved.