Google APIの使用方法に関するドキュメント、例、チュートリアルを読みました。最新のアクティビティと情報を表示するミニアプリを既に実行していますが、トークンを保存するためにセッションを使用しています。
私の質問は、データベースからトークンを保存および取得して、ユーザー(既に登録済み)が[ログイン]をクリックしたときに、認証を繰り返さなくてもすぐにAPIを使用できるようにするにはどうすればよいですか?ミニアプリの開始点としてこの例を使用したことに注意してください。
コードスニペットは次のとおりです。
$client = new apiClient();
$client->setApplicationName(APP_NAME);
$client->setClientId(CLIENT_ID);
$client->setClientSecret(CLIENT_SECRET);
$client->setRedirectUri(REDIRECT_URL);
$client->setDeveloperKey(DEV_KEY);
$plus = new apiPlusService($client);
$google_userinfo = new apiOauth2Service($client);
$message = "";
// In a real application this would be stored in a database, and not in the session!
if (isset($_SESSION['token']))
$client->setAccessToken($_SESSION['token']);
$_SESSION['token'] = $client->getAccessToken();
if (isset($_GET['code'])) {
$client->authenticate();
// In a real application this would be stored in a database, and not in the session!
$_SESSION['token'] = $client->getAccessToken();
header('Location: http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']);
}
...
//Somewhere here, I added a function that ties $_SESSION['token'] to the user's info.
...
<form action="" method="post" id="form1" name="form1">
<fieldset>
<div id="main-url-section" style="width: 50%;margin: 0px auto;text-align: center;">
<?php
$authUrl = $client->createAuthUrl();
print "<p><a class='login' href='$authUrl'>Log me in!</a></p>";
?>
</div>
</fieldset>
</form>
助けてくれてありがとう!
よろしく、
ジョン