本文介绍了如何获得用户的详细信息corectly与谷歌的API的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好我在这code中的错误,我试图让用户详细信息我只需要姓名,电子邮件,但code不返回的电子邮件。我怎样才能解决这个问题?

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>

在code返回此

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
        (
        )

我没有得到这个code后,我想让它显示我的电子邮件和名字,我会在我的数据库插入。但是,我怎么能得到从这个API正确的数据?

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?

感谢您的帮助。

推荐答案

我只是说

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

和现在的工作。

这篇关于如何获得用户的详细信息corectly与谷歌的API的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 06:54