2017-06-03 106 views
1

我嘗試通過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 = ...給出了禁錯誤...

+0

你好。你可以發佈你迄今爲止的代碼嗎?沒有看到任何東西,很難說出什麼問題。 –

+0

好的,我剛剛編輯了我的問題,並在那裏添加了代碼。 – blacktemplar

回答

0
'endTimeUnspecified' => true, 

導致您的問題(其谷歌的錯,但你不能告訴他們)

如果切換到

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

它會工作(我知道這不是你想要的,也許你可以找出一種方法來調整$ start2給你你想要的結束時間,但endTimeUnspecified是什麼導致它說403被禁止

+0

感謝您的幫助,這解決了我的問題。問題是爲什麼在API中有'endTimeUnspecified'這樣的選項,如果它導致錯誤^^? – blacktemplar

+0

它是那些在內部服務器上工作但不在外部服務器上工作的東西之一 - 我發現它純屬偶然。我將結束時間設置爲開始時間+ 20小時,當我想要一整天時(我甚至設置了結束時間+天數,並且它適用於多天預約 – ForgivenIT

相關問題