我使用应用程序android并在发出请求时获取令牌:
oauth2:server:client_id:xxxxxx.apps.googleusercontent.com:api_scope:profile email openid
之后我想在Web服务器上获取有关此令牌的信息。 我试图使用: https://www.googleapis.com/oauth2/v1/userinfo?alt=json&access_token=xxx
但是我无法获取数据,我怎么能得到它?
答案 0 :(得分:0)
要获得真实令牌,您需要更正网址请求: https://www.googleapis.com/oauth2/v4/token
并通过POST方法传递参数:
grant_type=authorization_code&client_id=xxxx.apps.googleusercontent.com&client_secret=xxxx&code={code}
代码 - 以前获得的类型的标记4 / xxxxx