doupian9798 2015-08-25 07:49 采纳率: 100%
浏览 217
已采纳

如何使用google api正确获取用户详细信息

Hi there I have a bug in this code, I tried to get user details I need only name, email but code doesn't return the email. How can I fix it ?

<?php

include_once "templates/base.php";
session_start();

require_once ('src/Google/autoload.php');

 $client_id = '1061700181920-5i9r----something-----k3mogj328g9sed3.apps.googleusercontent.com';
 $client_secret = 'zSfeSN-----gsomething----PgtZce0uvm';
 $redirect_uri = 'http://localhost/easy_b/shop/user-example.php';

$client = new Google_Client();
$client->setClientId($client_id);
$client->setClientSecret($client_secret);
$client->setRedirectUri($redirect_uri);
$client->addScope("https://www.googleapis.com/auth/plus.login");


$service = new Google_Service_Oauth2($client);

//logout
if (isset($_REQUEST['logout'])) {
  unset($_SESSION['access_token']);
}


if (isset($_GET['code'])) {
  $client->authenticate($_GET['code']);
  $_SESSION['access_token'] = $client->getAccessToken();
  $redirect = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
  header('Location: ' . filter_var($redirect, FILTER_SANITIZE_URL));
}

/************************************************
  If we have an access token, we can make
  requests, else we generate an authentication URL.
 ************************************************/
if (isset($_SESSION['access_token']) && $_SESSION['access_token']) {
  $client->setAccessToken($_SESSION['access_token']);
} else {
  $authUrl = $client->createAuthUrl();
}

/************************************************
  If we're signed in and have a request to shorten
  a URL, then we create a new URL object, set the
  unshortened URL, and call the 'insert' method on
  the 'url' resource. Note that we re-store the
  access_token bundle, just in case anything
  changed during the request - the main thing that
  might happen here is the access token itself is
  refreshed if the application has offline access.
 ************************************************/
if ($client->getAccessToken()) {
  $user = $service->userinfo->get($_POST);
echo '<pre>';
    print_r($user);
    echo '</pre>';
  $_SESSION['access_token'] = $client->getAccessToken();
}

echo pageHeader("User Query - URL Shortener");
if (strpos($client_id, "googleusercontent") == false) {
  echo missingClientSecretsWarning();
  exit;
}
?>
<div class="box">
  <div class="request">
<?php 
if (isset($authUrl)) {
  echo "<a class='login' href='" . $authUrl . "'>Connect Me!</a>";
} else {
  echo <<<END

    <a class='logout' href='?logout'>Logout</a>
END;
}
?>
  </div>


</div>

the code returns this

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

    [email] => 
    [familyName] => NVS
    [gender] => male
    [givenName] => Jack
    [hd] => 
    [id] => 100137049524582923700
    [link] => https://plus.google.com/100137049524582923700
    [locale] => en
    [name] => Jack NVS (LOGRomania)
    [picture] => https://lh6.googleusercontent.com/-VdyFV_RL0SE/AAAAAAAAAAI/AAAAAAAAADo/WCrZfpemELk/photo.jpg
    [verifiedEmail] => 
    [modelData:protected] => Array
        (
            [given_name] => Jack
            [family_name] => NVS
        )

    [processed:protected] => Array
        (
        )

After I get this code correctly I want it to show me email and name, I will insert them in my database. But, how can I get the proper data from this API?

Thanks for helping.

  • 写回答

1条回答 默认 最新

  • donglun1020 2015-08-25 08:39
    关注

    i just added

    $client->addScope("https://www.googleapis.com/auth/plus.login https://www.googleapis.com/auth/userinfo.email");
    

    and now is working.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 WPF 大屏看板表格背景图片设置
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示