我们可以在PHP的Google People API中使用多个范围吗

时间:2019-04-01 08:42:05

标签: google-people

我在php中使用google people API。 请回答这个问题。 我很困扰。 基本上我想显示电子邮件地址,如果有人有解决方案建议我

$client = new Google_Client();
$client->setApplicationName('People API');
$client->setScopes(Google_Service_PeopleService::CONTACTS);
$client->setAuthConfig('credentials.json');
$client->setAccessType('offline');
$client->setPrompt('select_account consent');

1 个答案:

答案 0 :(得分:0)

setScopes支持一系列范围。

$client->setScopes([
  Google_Service_PeopleService::CONTACTS,
  Google_Service_PeopleService::USER_EMAILS_READ
]);