Google Calendar API - >如何创建用于检索事件,变量的useraccount?

时间:2013-05-18 13:41:41

标签: php api google-calendar-api

我目前正在使用Google Calendar API。 我从用户的日历中检索EVENTS列表,但此时我的代码中给出了用户的帐户。 我不想做这个变量(它应该从你选择的帐户中检索EVENTS)。

这是我的代码:

<?php
require_once 'src/Google_Client.php';
require_once 'src/contrib/Google_CalendarService.php';

$client = new Google_Client();
$client->setApplicationName('Tryout for Google Calendar');
// Visit https://code.google.com/apis/console?api=plus to generate your
// client id, client secret, and to register your redirect uri.
$client->setClientId('myid');
$client->setClientSecret('mysecret');
$client->setRedirectUri('http://localhost/gcal/done.php');
$client->setDeveloperKey('mykey');

$cal = new Google_CalendarService($client);
if (isset($_GET['logout'])) {
  unset($_SESSION['token']);
}

if (isset($_GET['code'])) {
$client->authenticate($_GET['code']);
$_SESSION['token'] = $client->getAccessToken();
header('Location: http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']);
}

if (isset($_SESSION['token'])) {
$client->setAccessToken($_SESSION['token']);
}

if ($client->getAccessToken()) {
$minCheck = date(DATE_ATOM);

$eventList = $cal->events->listEvents("phpkay@gmail.com", array('singleEvents' =>                      'true', 'timeMin' => $minCheck));

  print "<h1>Calendar List</h1><pre>" . print_r($eventList, true) . "</pre>";


$_SESSION['token'] = $client->getAccessToken();
} else {
  $authUrl = $client->createAuthUrl();
  print "<a class='login' href='$authUrl'>Connect Me!</a>";
}

?>

这是我设置useraccount的部分,即:“phpkay@gmail.com”

$eventList = $cal->events->listEvents("phpkay@gmail.com", array('singleEvents' => 'true', 'timeMin' => $minCheck));

如何检索所选的useraccount(用户获得一个屏幕,他可以选择其中一个用于此APP的Google帐户)并使用此而不是设置“phpkay@gmail.com”-account?

对不起,如果我的问题不清楚,我不知道如何用另一种方式来表达这一点。

1 个答案:

答案 0 :(得分:0)

您可以使用OAuth 2.0 API执行此操作。只需包括:

https://developers.google.com/admin-sdk/directory/v1/reference/users
在您的OAuth范围列表中

,然后将经过身份验证的GET请求发送到:

https://www.googleapis.com/oauth2/v2/userinfo

这将返回经过身份验证的用户的电子邮件地址。您可以在Google API Explorer

中试用一下