PHP クライアント ライブラリを使用して Google カレンダー API を使用すると、問題が発生します。
以下は私のコードです:
<?php
require_once 'google-api-php-client/src/Google_Client.php';
require_once 'google-api-php-client/src/contrib/Google_CalendarService.php';
define("CLIENT_ID", "blah blah blah");
define("SERVICE_ACCOUNT_NAME", "blah blahblah");
define("KEY_FILE", "keykeykey.p12");
$client = new Google_Client();
$client->setApplicationName("Google Calendar Sample");
$client->setUseObjects(true);
session_start();
if (isset($_SESSION['token']))
{
$client->setAccessToken($_SESSION['token']);
}
$key = file_get_contents(KEY_FILE);
$client->setAssertionCredentials(new Google_AssertionCredentials(
SERVICE_ACCOUNT_NAME,
array('https://www.googleapis.com/auth/calendar'),
$key)
);
$client->setClientId(CLIENT_ID);
$service = new Google_CalendarService($client);
///////////////////////////////////////////////////////////////////
try
{
$calendar = new Google_Calendar();
$calendar->setSummary('test');
$createdCalendar = $service->calendars->insert($calendar);
var_dump($createdCalendar);
}
catch(Google_ServiceException $e)
{
var_dump($e);
}
///////////////////////////////////////////////////////////////////
if ($client->getAccessToken())
{
$_SESSION['token'] = $client->getAccessToken();
}
?>
$createdCalendar のダンプは次のとおりです。
object(Google_Calendar)[15]
public 'kind' => string 'calendar#calendar' (length=17)
public 'description' => null
public 'summary' => string 'test' (length=3)
public 'etag' => string '"wT71Iy7ZAyY0SAhLu4jxO8w9qqM/zHZjSmLgdGM-FmXSbf2H0YONYb0"' (length=57)
public 'location' => null
public 'timeZone' => null
public 'id' => string '8ejg8n6j1j9utuuh6954jm18lk@group.calendar.google.com' (length=52)
これは、Google から ID が提供されたため、カレンダーが正常に作成されたことを示しています。ただし、このカレンダーは、Web ブラウザーで Google カレンダーを開くと、カレンダーのリストに表示されません。
何か案は?
ところで、///////////// の間のコードブロックを次のように置き換えると、正常に動作するため、2 Legged OAuth2 のセットアップが機能していることは確かです。
$event = new Google_Event();
$event->setSummary('Appointment');
$event->setLocation('Somewhere');
$start = new Google_EventDateTime();
$start->setDateTime('2012-12-15T16:00:00.000-08:00');
$event->setStart($start);
$end = new Google_EventDateTime();
$end->setDateTime('2012-12-15T19:00:00.000-08:00');
$event->setEnd($end);
$attendee1 = new Google_EventAttendee();
$attendee1->setEmail('testEmail@gmail.com');
$attendees = array($attendee1);
$event->attendees = $attendees;
$createdEvent = $service->events->insert('primary', $event);