1

Google カレンダーを使用していくつかのタスクをスケジュールしており、内部 Web サイトで使用するカレンダーのデータを取得したいと考えています。

Google API コンソールを使用して API キーとクライアント ID、クライアント シークレットなどを作成し、Calendar API へのアクセスを有効にしました。REST 経由でカレンダー データを要求するには、どの PHP コードを使用すればよいでしょうか?

Google の PHP クライアント ライブラリを使用してこれまでにまとめたものを次に示します。

require_once $_SERVER['DOCUMENT_ROOT'].'/includes/google-api-php-client/src/Google_Client.php';
require_once $_SERVER['DOCUMENT_ROOT'].'/includes/google-api-php-client/src/contrib/Google_CalendarService.php';
session_start();

    $client = new Google_Client();

$client->setApplicationName('My Application Name');

$client->setClientId('my_client_id');
$client->setClientSecret('my_client_secret');
$client->setRedirectUri('my_oauth2_callback');
$client->setDeveloperKey('my_developer_key');

$cal = new Google_CalendarService($client);

if (isset($_REQUEST['logout'])) {
  unset($_SESSION['access_token']);
}

// If the user has been redirected back to our page with an authorization code, exchange the code for an access token.
if (isset($_GET['code'])) {
  $client->authenticate($_GET['code']);
  $_SESSION['access_token'] = $client->getAccessToken();
  header('Location: http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']);
}

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

if ($client->getAccessToken()) {
    $calList = $cal->calendarList->listCalendarList();
    print "<h1>Calendar List</h1><pre>" . print_r($calList, true) . "</pre>";

            // Here's where I need to do something to get the calendar data

    // We're not done yet. Remember to update the cached access token.
    // Remember to replace $_SESSION with a real database or memcached.
    $_SESSION['token'] = $client->getAccessToken();
} else {
    $authUrl = $client->createAuthUrl();
    print "<a href='$authUrl'>Connect Me!</a>";
}

「Connect Me!」をスキップできるようにしたい。承認ステップ。アプリにアクセスするユーザーは、Google の共有カレンダーにアクセスできない可能性がありますが、このアプリでカレンダーのデータを表示できるはずです。

また、Zend Framework をサーバーにインストールしています。私は Zend を必要としないソリューションを好みますが、それが機能する場合はそれを使用します..

4

1 に答える 1