SQLの窓

2015年01月15日


Google API の中でも単純な Task API を使って、アクセストークン取得のテンプレートを整備しました

google-api-php-client
Client ID と Client secret と Redirect URIs が必要です ( APIs Console )

今までサンプルコードをそのまま使って来ましたが、よくよく読むと少し胡散臭いので整備しました。

どの API も一様に同じようになっていますが、その中でも Task API は単純で解りやすく、実際のオンラインページと比較しやすいのでおすすめです。

※ アクセストークンの期限を内部でチェックしている方式で目で見れるようにしました
<?php
/*
 * Copyright 2011 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
include_once "templates/base.php";
session_start();

header( "Content-Type: text/html; Charset=utf-8" );
header( "pragma: no-cache" );
header( "Expires: Wed, 31 May 2000 14:59:58 GMT" );
header( "Cache-control: no-cache" );

require_once realpath(dirname(__FILE__) . '/../autoload.php');

$client_id = '';
$client_secret = '';
$redirect_uri = 'http://localhost/gapi/examples/idtoken.php';

$client = new Google_Client();
$client->setClientId($client_id);
$client->setClientSecret($client_secret);
$client->setRedirectUri($redirect_uri);
$client->addScope('https://www.googleapis.com/auth/tasks');

/************************************************
  ログアウト処理
  アクセストークンをクリアして最初の状態に戻す
 ************************************************/
if (isset($_REQUEST['logout'])) {
  unset($_SESSION['access_token']);
}

/************************************************
  API からのコールバック
  つまり、アクセストークンが取得されるところ
  取得後、環境をリセットする為に自分自身を呼ぶ
 ************************************************/
if (isset($_GET['code'])) {
  $client->authenticate($_GET['code']);
  $_SESSION['access_token'] = $client->getAccessToken();
  $redirect = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
  header('Location: ' . filter_var($redirect, FILTER_SANITIZE_URL));
  exit();
}

/************************************************
  アクセストークンがある場合
  但し、期限が切れている場合は再度取得する必要
  があるので、認証用の URL を作成する
 ************************************************/
if (isset($_SESSION['access_token']) && $_SESSION['access_token']) {
  $client->setAccessToken($_SESSION['access_token']);
  if ($client->isAccessTokenExpired()) {
    unset($_SESSION['access_token']);
    $authUrl = $client->createAuthUrl();
  }
}
/************************************************
  アクセストークンが無い場合
  認証用の URL を作成する
 ************************************************/
else {
  $authUrl = $client->createAuthUrl();
}

/************************************************
  目的の処理
 ************************************************/

echo pageHeader("目的の処理");
?>
<div class="box" style='width:80%'>
  <div class="request">
<?php
// 接続用リンク
if (isset($authUrl)) {
  echo "<a class='login' href='" . $authUrl . "'>Connect Me!</a>";
} 
// ログアウト用リンク
else {
  echo "<a class='logout' href='?logout'>Logout</a>";
}

if ($client->getAccessToken() && isset($_SESSION['access_token']) && $_SESSION['access_token'] ) {
?>
  </div>

  <pre class="data">
<?php 
// 主処理

$obj = json_decode($_SESSION['access_token']);
print_r($obj);

print "期限 :" . ($obj->{'created'}+$obj->{'expires_in'}) . "\n";
print "現在 :" . time() . "\n";

print "\n";

$service = new Google_Service_Tasks($client);

// タスクリストの一覧
$obj_tasklists = $service->tasklists->listTasklists();

// タスクリストの配列として取得
$tasklists = $obj_tasklists->getItems();

print_r($tasklists);


?>
  </pre>
</div>
<?php
}

?>

環境をリセットする為と言うのは、コールバック時にはアクセストークンが URL に付加されており、そのままのページではトークンの内容が解ってしまうからです。( $_GET['code'] は URL から取得されるものです )

関連する記事


【Googleの最新記事】
posted by lightbox at 2015-01-15 15:23 | Google | このブログの読者になる | 更新情報をチェックする
container 終わり



フリーフォントで簡単ロゴ作成
フリーフォントでボタン素材作成
フリーフォントで吹き出し画像作成
フリーフォントではんこ画像作成
ほぼ自由に利用できるフリーフォント
フリーフォントの書体見本とサンプル
画像を大きく見る為のウインドウを開くボタンの作成

CSS ドロップシャドウの参考デモ
イラストAC
ぱくたそ
写真素材 足成
フリーフォント一覧
utf8 文字ツール
右サイド 終わり
base 終わり