我嘗試通過php運行服務器端來使用Google Calendar API。Google Calendar API - 禁止 - 服務帳戶出錯
我創建了一個服務帳戶並使用它的憑據(通過json文件)。我沒有使用G Suite。
現在我可以列出日曆中的事件,但當我嘗試創建新事件時,我收到了禁止 - 錯誤。
我與服務帳戶的電子郵件地址共享了我的日曆,併爲其提供了日曆的管理員權限。我不知道我做錯了什麼!我無法讓它工作。我也在使用範圍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 = ...
給出了禁錯誤...
你好。你可以發佈你迄今爲止的代碼嗎?沒有看到任何東西,很難說出什麼問題。 –
好的,我剛剛編輯了我的問題,並在那裏添加了代碼。 – blacktemplar