Google oAuth2 redirect_uri_mismatch 在令牌访问中
Google oAuth2 redirect_uri_mismatch in token access
我正在尝试使用 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"
}
那是我的错误。我不得不使用我在一次性重定向 uri 中使用的 redirect_uri
。 Google 使用 redirect_uri 之一来休息客户端来源。
我正在尝试使用 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"
}
那是我的错误。我不得不使用我在一次性重定向 uri 中使用的 redirect_uri
。 Google 使用 redirect_uri 之一来休息客户端来源。