我正在尝试找出如何使用V3 API与本地非营利组织的现有应用程序集成Google日历。
目的是:我们的组织有一个公众的Google日历(带有Google帐户),访问者和活跃的志愿者都可以在自己的日历中订阅或显示。我们正在开发一个简单的管理Web应用程序(用PHP编写),在该应用程序中可以创建和管理工作队。核心功能是计划会议(并管理这些会议的注释,但这与问题无关。)。计划会议时,通过电子邮件通知用户。如果可以将计划的会议编程添加到Google日历中,那也将非常好。我现在必须在每次计划的会议上手动执行此操作。
我已经在developers.google.com和PHP库的Google代码页面上阅读了两天的文档,我发现自己迷失在不同的身份验证方案,帐户类型,钥匙等上我开始认为这不是预期的用例。
要成为我问题的核心:我需要访问组织Google日历,并能够发布事件,而无需任何人类互动。这甚至可能吗?如果是这样,我需要在Google Apis控制台中创建哪个帐户(Web应用程序,服务帐户或安装应用程序?)?我将如何验证该应用程序?我需要以某种方式授予该申请的权利吗?我可以参考的地方是否有一个示例(可能使用其他API?)?
从我所看到的,与Google文档中所有示例的关键区别在于,我不想修改当前或最终用户的日历,但是无论用户登录已登录如何,都相同的日历。(用户身份验证并未发生在Google API中,我们自己滚动了。)重定向/用户同意机制对我来说并不完全有用。
在这个问题中,询问者正试图取得类似的目标。但是,没有提供完整的答案。我似乎找不到所接受的响应中提到的一些来源。
您应该能够从此处开始使用示例代码开始:树干/示例/日历/simple.php
并在此处引用:https://developers.google.com/google-apps/calendar/v3/reference/events/quickadd#examples
关于身份验证,您需要访问https://code.google.com/apis/console?api=calendar才能创建和获取相关的键,但并不清楚,因此您可能需要围绕一个位。
我为API访问创建了一个"服务帐户",该帐户为我提供了客户ID,让我下载一个私钥,但是我不确定不尝试进一步尝试将其应用于上面链接的代码样本。
编辑
我刚刚找到了一些仍然有效的旧代码,这些代码使用zendgdata-1.10.2库在日历中创建事件:
//for Google Calendar
set_include_path('./ZendGdata-1.10.2/library');
function createAlert($message, $date) {
$google = array();
// Define credentials for the Google Calendar account
$google['GCAL_USER'] = "info@example.com";
$google['GCAL_PASS'] = "password123";
// Include Zend GData client library
require_once 'Zend/Loader.php';
Zend_Loader::loadClass('Zend_Gdata');
Zend_Loader::loadClass('Zend_Gdata_ClientLogin');
Zend_Loader::loadClass('Zend_Gdata_Calendar');
// Get Google Calendar service name (predefined service name for calendar)
$service = Zend_Gdata_Calendar::AUTH_SERVICE_NAME;
// Authenticate with Google Calendar
$client = Zend_Gdata_ClientLogin::getHttpClient($google['GCAL_USER'], $google['GCAL_PASS'], $service);
date_default_timezone_set('GMT');
// Create a calendar object
$calendar = new Zend_Gdata_Calendar($client);
// Create a new event
$event = $calendar->newEventEntry();
$event->title = $calendar->newTitle($message);
// Add our message as the event content
$event->content = $calendar->newContent($message);
$when = $calendar->newWhen();
// Min time is 5 mins away
if ($date == "" || strtotime('+5 minute') >= strtotime($date)+300) {
$when->startTime = date("c", strtotime('+5 minute'));
$when->endTime = date("c", strtotime('+10 minute'));
} else {
$when->startTime = date("c", strtotime($date)+300);
$when->endTime = date("c", strtotime($date)+600);
}
$event->when = array($when);
// Setup reminders for event
$reminder = $calendar->newReminder();
$reminder->method = "all";
$when = $event->when[0];
$when->reminders = array($reminder);
// Send the new event to be added to Google Calendar
if (defined('GCAL_ID')) {
$newEvent = $calendar->insertEvent($event, 'http://www.google.com/calendar/feeds/' . $google['GCAL_ID'] . '/private/full');
} else {
$newEvent = $calendar->insertEvent($event);
}
// Check response
if (stripos($newEvent->id->text, "http://www.google.com/calendar/feeds/". str_replace('@', '%40', $google['GCAL_ID']) ."/private/full/") !== false) {
return "Sent!n";
} else {
return $newEvent->id->text;
}
}