我使用谷歌api的经验很少,而且我发现很难找到某些科目的相关信息。
我要做的是创建一个不需要用户登录信息的日历。我希望我的服务器根据数据库中的信息向日历添加事件。
我已经进入我的谷歌日历,创建了一个新日历,并编写了一些代码来向日历添加事件。然后我使用谷歌提供的iframe代码将日历嵌入我的网站。
我遇到的问题是服务器希望用户以我身份登录以向日历添加事件。由于服务器是添加事件的服务器,我不确定如何解决这个问题。 I know I need to make/use a service account so my server can "delegate domain-wide authority",但我不确定如何使用PHP的客户端库执行此操作。谷歌没有提供任何示例。我不得不下载我的服务器需要进行这些api调用的p12文件,但我不确定如何使用客户端库指向该文件。是否可以使用php客户端库挂钩到服务帐户来进行这些api调用?如果是这样,怎么样?
非常感谢任何帮助。
答案 0 :(得分:2)
我遇到了同样的问题,并在这里找到了解决方案(在一个圆形的方式): Inserting Google Calendar Entries with Service Account
首先要正确设置您的Google日历(请参阅上面提到的非常好的帖子),然后从此处下载日历的API代码https://github.com/google/google-api-php-client 它是该页右侧的“下载ZIP”链接。
然后这里有一些适用于我的示例代码(私钥在适当的地方用xxxx替换,但除此之外,它正是我正在使用的)。
我现在正试图找出如何阅读&清除谷歌日历,这更具挑战性!
<?php
//
// built from example at:
// https://stackoverflow.com/questions/26064095/inserting-google-calendar-entries-with-service-account
//
$startdate = new DateTime('2015-01-29 10:00', new DateTimeZone('Europe/London'));
$startdate = $startdate->format('c');
$enddate = new DateTime('2015-01-29 10:00', new DateTimeZone('Europe/London'));
$enddate = $enddate->format('c');
//
// call function to add one event to the calendar (xxxxxxxxxxx@googlemail.com = the calendar owner)
//
calendarize('Test Appointment','Test appt description',$startdate,$enddate,'xxxxxxxxxxx@googlemail.com');
//-----------------------------------------------//
// funtion to add an event to my Google calendar //
//-----------------------------------------------//
function calendarize ($title, $desc, $start_ev_datetime, $end_ev_datetime, $cal_id) {
session_start();
require_once '../google-api-php-client-master/autoload.php';
//Google credentials
$client_id = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.apps.googleusercontent.com';
$service_account_name = 'xxxxxxxxxxxxxxxxxxxxxxxxxx@developer.gserviceaccount.com';
$key_file_location = '../google-api-php-client-master/API Project-xxxxxxxxxx.p12';
if (!strlen($service_account_name) || !strlen($key_file_location))
echo missingServiceAccountDetailsWarning();
$client = new Google_Client();
$client->setApplicationName("Whatever the name of your app is");
if (isset($_SESSION['service_token'])) {
$client->setAccessToken($_SESSION['service_token']);
}
$key = file_get_contents($key_file_location);
$cred = new Google_Auth_AssertionCredentials(
$service_account_name,
array('https://www.googleapis.com/auth/calendar'),
$key
);
$client->setAssertionCredentials($cred);
if($client->getAuth()->isAccessTokenExpired()) {
try {
$client->getAuth()->refreshTokenWithAssertion($cred);
} catch (Exception $e) {
var_dump($e->getMessage());
}
}
$_SESSION['service_token'] = $client->getAccessToken();
$calendarService = new Google_Service_Calendar($client);
$calendarList = $calendarService->calendarList;
//Set the Event data
$event = new Google_Service_Calendar_Event();
$event->setSummary($title);
$event->setDescription($desc);
$start = new Google_Service_Calendar_EventDateTime();
$start->setDateTime($start_ev_datetime);
$start->setTimeZone('Europe/London');
$event->setStart($start);
$end = new Google_Service_Calendar_EventDateTime();
$end->setDateTime($end_ev_datetime);
$end->setTimeZone('Europe/London');
$event->setEnd($end);
try {
$createdEvent = $calendarService->events->insert($cal_id, $event);
} catch (Exception $e) {
var_dump($e->getMessage());
}
echo 'Event Successfully Added with ID: '.$createdEvent->getId();
}
?>
答案 1 :(得分:0)
使用OAuth2登录并授予您的服务器访问日历帐户的权限非常简单且记录良好(使用google api php客户端)。如果您请求离线访问并存储刷新令牌,您可以登录&#34; as you&#34;服务器端随时都可以。
请参阅Google Accounts Authentication and Authorization: Offline access