在我的应用中,我将Google令牌ID作为String格式的输入。我的问题是,是否可以使用java google API检索用户信息,如(用户名,邮件....)。
我试过这个例子
Credential credential = GoogleCredential().setAccessToken(tokenId);
Oauth2 oauth2 = new Oauth2.Builder(HTTP_TRANSPORT, JSON_FACTORY, credential).setApplicationName(APPLICATION_NAME).build();
Userinfoplus userinfo = oauth2.userinfo().get().execute();
return userinfo.getEmail();
我收到以下错误:
com.google.api.client.googleapis.json.GoogleJsonResponseException: 403 Forbidden
{
"code" : 403,
"errors" : [ {
"domain" : "global",
"message" : "Insufficient Permission",
"reason" : "insufficientPermissions"
} ],
"message" : "Insufficient Permission"
}
答案 0 :(得分:0)
假设您正在获取ID令牌,这可能就是您所需要的: https://developers.google.com/identity/protocols/OpenIDConnect#obtainuserinfo