如何检索Google Calendar Resources PHP API客户端?

时间:2016-08-11 07:47:28

标签: php google-admin-sdk

如何使用php-client I found same question here获取谷歌日历资源,我没有从答案中获得任何帮助。

是否可以使用download google admin sdk PHP

从我公司的Google日历中获取所有资源

我无法在此lib中获取任何示例或方法如何获取像房间这样的所有资源。有办法从公司谷歌日历中获取资源。

1 个答案:

答案 0 :(得分:1)

这是解决方案

$client = new \Google_Client();
$client->useApplicationDefaultCredentials();
$client->setScopes(['https://www.googleapis.com/auth/admin.directory.resource.calendar','https://www.googleapis.com/auth/admin.directory.resource.calendar.readonly']);
$client->setSubject('user@domain.com');
$directoryService = new \Google_Service_Directory($client);

$resources = $directoryService->resources_calendars->listResourcesCalendars('my_customer')->getItems();

var_dump($resources);