获得权限后,为什么我无法从Google Plus API检索用户电子邮件

时间:2013-06-12 20:31:31

标签: php google-plus

使用google plus connect API我可以要求获得用户电子邮件的许可,但我似乎无法访问它。

以下是我正在使用的代码:

require_once '../../src/Google_Client.php';
require_once '../../src/contrib/Google_PlusService.php';

session_start();

$client = new Google_Client();
$client->setApplicationName("Test Application");
$client->setClientId('XXXXX');
$client->setClientSecret('XXXXX');
$client->setRedirectUri('XXXXX');
$client->setDeveloperKey('XXXXX'); 
$client->setScopes(array('https://www.googleapis.com/auth/plus.login','https://www.googleapis.com/auth/userinfo.email'));

$plus = new Google_PlusService($client);

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

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

if (isset($_SESSION['access_token'])) {
  $client->setAccessToken($_SESSION['access_token']);
}

if ($client->getAccessToken()) {

  $me = $plus->people->get('me');
  print_r($me);

 }

知道如何在用户获得电子邮件地址后检索电子邮件地址吗?

2 个答案:

答案 0 :(得分:6)

有一段open issue,因为有一段时间你可以加注星标。

与此同时,您可以使用针对OAuth2 Userinfo API的经过身份验证的请求。

require_once '../../src/contrib/Google_Oauth2Service.php';

(...)

$oauth2Service = new Google_Oauth2Service($client);

(...)

$userinfo = $oauth2Service->userinfo->get();
$email = $userinfo["email"];

答案 1 :(得分:2)

电子邮件信息来自不同的端点,需要另一个请求。获得授权后,以下代码应该可以使用:

$oauth2Service = new Google_Oauth2Service($client); 
$emailinfo = $oauth2Service->userinfo->get(); 
print_r($emailinfo);