我正在尝试从gmail获得回复,但我的回答是这样Status=Moved Temporarily, StatusCode=302
我无法理解我错过了我正在传递的网址。这是我正在使用的网址
auth_uri = https://accounts.google.com/o/oauth2/auth?
scope= https://mail.google.com&
redirect_uri='my redict url'&
client_id='my client id'&
response_type=code&
approval_prompt=force&
login_hint='+login_hint;
当我尝试在谷歌的响应中使用浏览器生成的网址时,我已被重定向到
此页面。请告诉我这个网址出了什么问题,或者我需要添加什么以及我需要做的其他事情,请指导我获得解决方案。
答案 0 :(得分:0)
您的重定向URI是什么? "我的重定向网址"?那是无效的。您需要提供有效的URI。我正在使用
http://localhost:8080/
这是oAuth授权后重定向的URI。
答案 1 :(得分:0)
您的重定向网址是否在项目开发者控制台的列入白名单的网址列表中?