是否可以通过 Google API 从用户的个人资料中获取信息?如果可能,我应该使用哪个 API?
我对这些信息很感兴趣:
- 用户个人资料的网址(例如https://profiles.google.com/115063121183536852887);
- 性别(性别);
- 头像照片。
从用户的个人资料中获取其他信息也很酷。
是否可以通过 Google API 从用户的个人资料中获取信息?如果可能,我应该使用哪个 API?
我对这些信息很感兴趣:
从用户的个人资料中获取其他信息也很酷。
将此添加到范围 - https://www.googleapis.com/auth/userinfo.profile
授权完成后,从 - https://www.googleapis.com/oauth2/v1/userinfo?alt=json获取信息
它有很多东西——包括姓名、公开资料网址、性别、照片等。
范围 - https://www.googleapis.com/auth/userinfo.profile
return youraccess_token = access_token
获取https://www.googleapis.com/oauth2/v1/userinfo?alt=json&access_token=youraccess_token
你会得到json:
{
"id": "xx",
"name": "xx",
"given_name": "xx",
"family_name": "xx",
"link": "xx",
"picture": "xx",
"gender": "xx",
"locale": "xx"
}
致塔希尔·亚辛:
这是一个 php 示例。
您可以使用 json_decode 函数来获取 userInfo 数组。
$q = 'https://www.googleapis.com/oauth2/v1/userinfo?access_token=xxx';
$json = file_get_contents($q);
$userInfoArray = json_decode($json,true);
$googleEmail = $userInfoArray['email'];
$googleFirstName = $userInfoArray['given_name'];
$googleLastName = $userInfoArray['family_name'];
此范围https://www.googleapis.com/auth/userinfo.profile现在已被弃用。请查看https://developers.google.com/+/api/auth-migration#timetable。
您将用于获取个人资料信息的新范围是:个人资料或https://www.googleapis.com/auth/plus.login
端点是 - https://www.googleapis.com/plus/v1/people/ {userId} - 对于当前登录的用户,userId 可以只是“我”。
我正在使用google-api-php-clientPHP
版本 1.1.4 并解决了这个问题
假设使用以下代码将用户重定向到 Google 身份验证页面:
$client = new Google_Client();
$client->setAuthConfigFile('/path/to/config/file/here');
$client->setRedirectUri('https://redirect/url/here');
$client->setAccessType('offline'); //optional
$client->setScopes(['profile']); //or email
$auth_url = $client->createAuthUrl();
header('Location: ' . filter_var($auth_url, FILTER_SANITIZE_URL));
exit();
假设一个有效的验证码被返回给redirect_url
,下面的代码将从验证码生成一个令牌并提供基本的配置文件信息:
//assuming a successful authentication code is return
$authentication_code = 'code-returned-by-google';
$client = new Google_Client();
//.... configure $client object code goes here
$client->authenticate($authentication_code);
$token_data = $client->getAccessToken();
//get user email address
$google_oauth =new Google_Service_Oauth2($client);
$google_account_email = $google_oauth->userinfo->get()->email;
//$google_oauth->userinfo->get()->familyName;
//$google_oauth->userinfo->get()->givenName;
//$google_oauth->userinfo->get()->name;
//$google_oauth->userinfo->get()->gender;
//$google_oauth->userinfo->get()->picture; //profile picture
但是,不返回位置。新的 YouTube 帐户没有 YouTube 特定的用户名
这是一个糟糕的文件/已经发生了变化。我会参考这个https://developers.google.com/oauthplayground以获取最新的端点。
截至2021
正确的端点userinfo
是
https://www.googleapis.com/oauth2/v1/userinfo
所以一旦你得到了access_token
你就可以做
curl -X GET "https://www.googleapis.com/oauth2/v1/userinfo" \
-H "Authorization: Bearer <access_token>"
重要提示:要获取您需要scope
的所有信息openid email profile
。
{
'sub': '<unique_id>',
'name': '<full>',
'given_name': '<first>',
'family_name': '<last>',
'picture': '<pic>',
'email': '<email>',
'email_verified': True,
'locale': 'en'
}
我正在使用 Google API for .Net,但毫无疑问,您可以找到使用其他版本的 API 获取此信息的相同方法。正如user872858提到的,范围userinfo.profile已被弃用(谷歌文章)。
要获取用户个人资料信息,我使用以下代码(从google 的示例中重写的部分):
IAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow(
new GoogleAuthorizationCodeFlow.Initializer
{
ClientSecrets = Secrets,
Scopes = new[] { PlusService.Scope.PlusLogin,"https://www.googleapis.com/auth/plus.profile.emails.read" }
});
TokenResponse _token = flow.ExchangeCodeForTokenAsync("", code, "postmessage",
CancellationToken.None).Result;
// Create an authorization state from the returned token.
context.Session["authState"] = _token;
// Get tokeninfo for the access token if you want to verify.
Oauth2Service service = new Oauth2Service(
new Google.Apis.Services.BaseClientService.Initializer());
Oauth2Service.TokeninfoRequest request = service.Tokeninfo();
request.AccessToken = _token.AccessToken;
Tokeninfo info = request.Execute();
if (info.VerifiedEmail.HasValue && info.VerifiedEmail.Value)
{
flow = new GoogleAuthorizationCodeFlow(
new GoogleAuthorizationCodeFlow.Initializer
{
ClientSecrets = Secrets,
Scopes = new[] { PlusService.Scope.PlusLogin }
});
UserCredential credential = new UserCredential(flow,
"me", _token);
_token = credential.Token;
_ps = new PlusService(
new Google.Apis.Services.BaseClientService.Initializer()
{
ApplicationName = "Your app name",
HttpClientInitializer = credential
});
Person userProfile = _ps.People.Get("me").Execute();
}
然后,您几乎可以使用 userProfile 访问任何内容。
更新:要使此代码正常工作,您必须在 google 登录按钮上使用适当的范围。例如我的按钮:
<button class="g-signin"
data-scope="https://www.googleapis.com/auth/plus.login https://www.googleapis.com/auth/plus.profile.emails.read"
data-clientid="646361778467-nb2uipj05c4adlk0vo66k96bv8inqles.apps.googleusercontent.com"
data-accesstype="offline"
data-redirecturi="postmessage"
data-theme="dark"
data-callback="onSignInCallback"
data-cookiepolicy="single_host_origin"
data-width="iconOnly">
</button>
有 3 个步骤需要运行。
非常有趣的是,这种最简单的用法在任何地方都没有清楚地描述。而且我相信存在危险,您应该注意verified_email
响应中的参数。因为如果我没记错的话,它可能会产生虚假电子邮件来注册您的应用程序。(这只是我的解释,很有可能我是错的!)
我发现 facebook 的 OAuth 机制描述得非常清楚。
如果您只想为您的 Web 应用程序的访问者获取 Google 用户 ID、姓名和图片 - 这是我 2020 年的纯 PHP 服务端解决方案,不使用外部库 -
如果您阅读了Google 的Using OAuth 2.0 for Web Server Applications指南(请注意,Google 喜欢更改指向其自己文档的链接),那么您只需执行 2 个步骤:
返回的令牌之一称为“id_token”,包含访问者的用户 ID、姓名和照片。
这是我的网页游戏的PHP代码。最初我使用的是 Javascript SDK,但后来我注意到,当仅使用客户端 SDK(尤其是用户 ID,这对我的游戏很重要)时,虚假的用户数据可能会传递到我的网页游戏,所以我已经切换到使用服务器端的PHP:
<?php
const APP_ID = '1234567890-abcdefghijklmnop.apps.googleusercontent.com';
const APP_SECRET = 'abcdefghijklmnopq';
const REDIRECT_URI = 'https://the/url/of/this/PHP/script/';
const LOCATION = 'Location: https://accounts.google.com/o/oauth2/v2/auth?';
const TOKEN_URL = 'https://oauth2.googleapis.com/token';
const ERROR = 'error';
const CODE = 'code';
const STATE = 'state';
const ID_TOKEN = 'id_token';
# use a "random" string based on the current date as protection against CSRF
$CSRF_PROTECTION = md5(date('m.d.y'));
if (isset($_REQUEST[ERROR]) && $_REQUEST[ERROR]) {
exit($_REQUEST[ERROR]);
}
if (isset($_REQUEST[CODE]) && $_REQUEST[CODE] && $CSRF_PROTECTION == $_REQUEST[STATE]) {
$tokenRequest = [
'code' => $_REQUEST[CODE],
'client_id' => APP_ID,
'client_secret' => APP_SECRET,
'redirect_uri' => REDIRECT_URI,
'grant_type' => 'authorization_code',
];
$postContext = stream_context_create([
'http' => [
'header' => "Content-type: application/x-www-form-urlencoded\r\n",
'method' => 'POST',
'content' => http_build_query($tokenRequest)
]
]);
# Step #2: send POST request to token URL and decode the returned JWT id_token
$tokenResult = json_decode(file_get_contents(TOKEN_URL, false, $postContext), true);
error_log(print_r($tokenResult, true));
$id_token = $tokenResult[ID_TOKEN];
# Beware - the following code does not verify the JWT signature!
$userResult = json_decode(base64_decode(str_replace('_', '/', str_replace('-', '+', explode('.', $id_token)[1]))), true);
$user_id = $userResult['sub'];
$given_name = $userResult['given_name'];
$family_name = $userResult['family_name'];
$photo = $userResult['picture'];
if ($user_id != NULL && $given_name != NULL) {
# print your web app or game here, based on $user_id etc.
exit();
}
}
$userConsent = [
'client_id' => APP_ID,
'redirect_uri' => REDIRECT_URI,
'response_type' => 'code',
'scope' => 'profile',
'state' => $CSRF_PROTECTION,
];
# Step #1: redirect user to a the Google page asking for user consent
header(LOCATION . http_build_query($userConsent));
?>
您可以使用 PHP 库通过验证 JWT 签名来增加额外的安全性。出于我的目的,这是不必要的,因为我相信谷歌不会通过发送虚假的访问者数据来背叛我的小网络游戏。
此外,如果您想获取访问者的更多个人数据,则需要第三步:
const USER_INFO = 'https://www.googleapis.com/oauth2/v3/userinfo?access_token=';
const ACCESS_TOKEN = 'access_token';
# Step #3: send GET request to user info URL
$access_token = $tokenResult[ACCESS_TOKEN];
$userResult = json_decode(file_get_contents(USER_INFO . $access_token), true);
或者您可以代表用户获得更多权限 - 请参阅OAuth 2.0 Scopes for Google APIs文档中的长列表。
最后,我的代码中使用的 APP_ID 和 APP_SECRET 常量 - 您可以从Google API 控制台获取:
如果您在客户端 Web 环境中,新的 auth2 javascript API 包含一个非常需要的getBasicProfile()
函数,它返回用户的姓名、电子邮件和图像 URL。
https://developers.google.com/identity/sign-in/web/reference#googleusergetbasicprofile