Google Calendar API - 禁止访问 - 服务帐户出错

时间:2017-06-03 17:44:06

标签: php api google-calendar-api http-status-code-403

我尝试通过php运行服务器端来使用Google Calendar API。

我创建了一个服务帐户并使用其凭据(通过json文件)。我没有使用G Suite。

现在,当我尝试创建一个新事件时,我能够列出我的日历事件,但是我得到了一个Forbidden - Error。

我使用服务帐户的电子邮件地址共享了我的日历,并为其提供了日历的管理员权限。我不知道我做错了什么!我无法让它发挥作用。我也在使用范围Google_Service_Calendar :: CALENDAR。

例外:403 - 禁止

我不知道如何调试此问题以及如何继续进行。

你能帮助我吗?

编辑:这是我的主叫代码:

putenv('GOOGLE_APPLICATION_CREDENTIALS=../google-service-account.json');

$client = new Google_Client();
$client->useApplicationDefaultCredentials();
$client->setScopes([Google_Service_Calendar::CALENDAR]);
$client->setRedirectUri('urn:ietf:wg:oauth:2.0:oob');
$service = new Google_Service_Calendar($client);

$event = new Google_Service_Calendar_Event([
  'summary' => $name,
  'location' => $location,
  'description' => $desc,
  'start' => [
    'dateTime' => $start,
    'timeZone' => $timezone,
  ],
  'endTimeUnspecified' => true,
]);

$calendar = $service->calendars->get($calendarId);
$settings = $service->settings->listSettings();
$list = $service->acl->listAcl($calendarId);
$event = $service->events->insert($calendarId, $event);

前三个服务电话($calender = ...$settings = ...$list = ...)运行正常,在acl中我还可以看到我的服务帐户的电子邮件地址拥有所有权利(角色) :老板)。但是最后一行$event = ...给出了禁止的错误......

1 个答案:

答案 0 :(得分:0)

'endTimeUnspecified' => true,

导致你的问题(它的谷歌故障,但你不能告诉他们)

如果您改为

 'end' => [
'dateTime' => $start2,
'timeZone' => $timezone,
 ],

它会起作用(我知道这不是你想要的,也许你可以想办法调整$ start2来给你你想要的结束时间但是endTimeUnspecified是导致它说403禁止的< / p>