如何使用Google API PHP SDK获取用户信息

时间:2015-02-14 22:58:12

标签: php sdk google-oauth google-admin-sdk

我正在尝试为拥有Google帐户的人添加登录选项到我的网站。我已经能够实现这个Facebook,但在向Google获取用户帐户信息时遇到了问题。

我正在使用位于此处的Google PHP SDK:https://github.com/google/google-api-php-client

$client = new Google_Client();
$client->setClientId($this->ci->config->item('client_id', 'google'));
$client->setClientSecret($this->ci->config->item('client_secret', 'google'));
$client->setRedirectUri($this->ci->config->item('callback_uri', 'google'));
$client->addScope('https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/plus.login');
$this->client->createAuthUrl();

但现在我如何访问用户的电子邮件地址和其他基本信息?

我在Google PHP SDK中看到了类getAccountInfo()中名为Google_Service_IdentityToolkit的方法。但是,它需要的参数是postBody,但我不知道如何获取/构建它。

2 个答案:

答案 0 :(得分:9)

这将返回一个Google_Service_Oauth2_Userinfoplus对象,其中包含您可能正在寻找的信息:

$oauth2 = new \Google_Service_Oauth2($client);
$userInfo = $oauth2->userinfo->get();
print_r($userInfo);

其中$clientGoogle_Client

的实例

输出:

Google_Service_Oauth2_Userinfoplus Object
(
    [internal_gapi_mappings:protected] => Array
        (
            [familyName] => family_name
            [givenName] => given_name
            [verifiedEmail] => verified_email
        )

    [email] => 
    [familyName] => 
    [gender] => 
    [givenName] => 
    [hd] => 
    [id] => 123456
    [link] => https://plus.google.com/123456
    [locale] => en-GB
    [name] => someguy
    [picture] => https://lh3.googleusercontent.com/-q1Smh9d8d0g/AAAAAAAAAAM/AAAAAAAAAAA/3YaY0XeTIPc/photo.jpg
    [verifiedEmail] => 
    [modelData:protected] => Array
        (
        )

    [processed:protected] => Array
        (
        )

)

另请注意,您还需要申请https://www.googleapis.com/auth/userinfo.profile范围。

答案 1 :(得分:2)

您应该可以通过构建Google_Service_OAuth2对象来获取此信息,将Google_Client作为参数传递,然后从那里获取用户信息。

$oauth2 = new Google_Service_Oauth2($client);
$userInfo = $oauth2->userinfo;