1

我想创建一个google calendar使用 php api,可以吗?

谢谢你的帮助。

4

2 回答 2

3

是的,有可能 !

$url = 'http://www.googleapis.com/calendar/v3/calendars';
$data = array(
    'summary' => 'MyNewCalendarTitle'
     );

// use key 'http' even if you send the request to https://...
$options = array(
    'http' => array(
        'header'  => "Content-type: application/x-www-form-urlencoded\r\n",
        'method'  => 'POST',
        'content' => http_build_query($data),
    ),
);
$context  = stream_context_create($options);
$result = file_get_contents($url, false, $context);

var_dump($result);

此页面的代码

日历插入文档的链接


但是使用Google API PHP 客户端库要容易得多

$calendar = new Calendar();
$calendar->setSummary('calendarSummary');
$calendar->setTimeZone('America/Los_Angeles');

$createdCalendar = $service->calendars->insert($calendar)
于 2014-04-03T12:40:03.957 回答