0

我对谷歌 API 有点困惑,尤其是谷歌日历 API。似乎我发现的每个示例都希望用户通过返回 URL 连接并返回。我想做的就是在后台使用 google calendars api 获取信息,显示数据,甚至创建数据。我愿意使用 Javascript/JSON 或最好通过 PHP 来做到这一点。

这是我找到的示例:

<?php
session_start();
require_once dirname(__FILE__).'/GoogleClientApi/Google_Client.php';
require_once dirname(__FILE__).'/GoogleClientApi/contrib/Google_AnalyticsService.php';

$scriptUri = "http://".$_SERVER["HTTP_HOST"].$_SERVER['PHP_SELF'];

$client = new Google_Client();
$client->setAccessType('online'); // default: offline
$client->setApplicationName('My Application name');
$client->setClientId('INSERT HERE');
$client->setClientSecret('INSERT HERE');
$client->setRedirectUri($scriptUri);
$client->setDeveloperKey('INSERT HERE'); // API key

// $service implements the client interface, has to be set before auth call
$service = new Google_AnalyticsService($client);

if (isset($_GET['logout'])) { // logout: destroy token
    unset($_SESSION['token']);
    die('Logged out.');
}

if (isset($_GET['code'])) { // we received the positive auth callback, get the token and store it in session
    $client->authenticate();
    $_SESSION['token'] = $client->getAccessToken();
}

if (isset($_SESSION['token'])) { // extract token from session and configure client
    $token = $_SESSION['token'];
    $client->setAccessToken($token);
}

if (!$client->getAccessToken()) { // auth call to google
    $authUrl = $client->createAuthUrl();
    header("Location: ".$authUrl);
    die;
}
echo 'Hello, world.';
4

1 回答 1

0

我想通了。如果有人对您使用的任何 google API 的工作原理感到好奇,您首先需要允许通过浏览器进行访问,除非您已经拥有访问令牌。在此之后,您可以从他们的库中提取您需要的任何信息。

于 2013-01-12T14:13:24.360 回答