我正在尝试使用Google oAuth2从一次性代码访问令牌。但是我在响应中收到错误消息import re
elements = ['1','2','01/02/2015','3','4','1-05-2015','5','Anot/her Ex/ample','6']
for element in elements:
matches = re.match(r"(\d{1,2})[\/-](\d{1,2})[\/-](\d{4})", element)
if (matches is not None):
print '{:0>2}-{:1>2}-{:2}'.format(matches.group(1), matches.group(2), matches.group(3))
。但是我已经在控制台中添加了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
答案 0 :(得分:-1)
那是我的错。我不得不使用我在一次性重定向uri中使用的redirect_uri
。 Google使用redirect_uri之一来休息客户端。