0

使用 google plus 连接 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);

 }

知道用户授予获取电子邮件地址的权限后如何检索电子邮件地址吗?

4

2 回答 2

6

有一段时间以来,您可以担任明星,这是一个未解决的问题。

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

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

(...)

$oauth2Service = new Google_Oauth2Service($client);

(...)

$userinfo = $oauth2Service->userinfo->get();
$email = $userinfo["email"];
于 2013-06-12T21:16:02.953 回答
2

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

$oauth2Service = new Google_Oauth2Service($client); 
$emailinfo = $oauth2Service->userinfo->get(); 
print_r($emailinfo);
于 2013-06-12T21:16:52.640 回答