web-dev-qa-db-ja.com

Google API Oauth php永続アクセス

私はグーグルカレンダーAPIを使用しています。これが私が望んでいることです。アプリに許可を与えると、毎日アクセスを許可しなくても、いつでもアプリを使用できます。アクセストークンを保存するか、更新トークンを使用してやりたいことを実行する必要があると聞き続けています。これが、どのように行うのですか?コードはどのように見えますか?トークンをCookieに保存しようとしましたが、1時間後にアクセストークンの有効期限が切れました。ユーザーをログインさせたままにするにはどうすればよいですか?

PS:説明付きのコード例を教えてください。

これが私のコードです(CakePHPを使用):

$client = new Google_Client();

    $client->setApplicationName("Wanda3.0 Agenda");

    $cal = new Google_CalendarService($client);

    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()) {
        /************* Code entry *************/


    }else{
        /************* Not connected to google calendar code *************/
        $authUrl = $client->createAuthUrl();

        $returnArr = array('status' => 'false', 'message' => "<a class='login' href='$authUrl'>Connect Me!</a>");

        return $returnArr;

    }
16
hope_industries

さて、数日待った後、Terry Seidlerからの提案(以下のコメント)がすべてを実現させました!これは、Cookieを使用するたびに認証せずにアクセストークンを自動的に更新する方法に関する私のコードです。

(注意:更新トークンをデータベースに保存する方が安全です)

これは魔法です(Cookieを使用):

$client = new Google_Client();

    $client->setApplicationName("Wanda3.0 Agenda");

    $cal = new Google_CalendarService($client);

    $client->setAccessType('offline');

    if (isset($_GET['code'])) {

        $client->authenticate($_GET['code']);

        $_SESSION['token'] = $client->getAccessToken();

        header('Location: http://'.$_SERVER['HTTP_Host'].$_SERVER['PHP_SELF']);

    }

    //Where the magic happends
    if (isset($_SESSION['token'])) {

        //Set the new access token after authentication
        $client->setAccessToken($_SESSION['token']);

        //json decode the session token and save it in a variable as object
        $sessionToken = json_decode($_SESSION['token']);

        //Save the refresh token (object->refresh_token) into a cookie called 'token' and make last for 1 month
        $this->Cookie->write('token', $sessionToken->refresh_token, false, '1 month');
    }

    //Each time you need the access token, check if there is something saved in the cookie.
    //If $cookie is empty, you are requested to get a new acces and refresh token by authenticating.
    //If $cookie is not empty, you will tell the client to refresh the token for further use,
    // hence get a new acces token with the help of the refresh token without authenticating..
    $cookie = $this->Cookie->read('token');

    if(!empty($cookie)){
        $client->refreshToken($this->Cookie->read('token'));
    }

以上です!ご不明な点がございましたら、下にコメントを残していただければ、できる限りお答えいたします。頑張って乾杯!

15
hope_industries

希望産業とほとんど同じですが、テストした後、必要なときにトークンを更新したかっただけです。完全なソースは、上部のキーなどを変更するだけです。

require_once 'google-api-php-client/src/Google_Client.php';
require_once 'google-api-php-client/src/contrib/Google_CalendarService.php';
session_start();
$client = new Google_Client();
$client->setApplicationName("Google Calendar PHP Starter Application");
// Visit https://code.google.com/apis/console?api=calendar to generate your
// client id, client secret, and to register your redirect uri.
$client->setClientId('your_id');
$client->setClientSecret('your_secret');
$client->setRedirectUri("http://localhost/your_redirect.php");
$client->setDeveloperKey('your_key');

$cal = new Google_CalendarService($client);

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

if (isset($_SESSION['token'])) {
    $client->setAccessToken($_SESSION['token']);//update token
    //json decode the session token and save it in a variable as object
    $sessionToken = json_decode($_SESSION['token']);
    //Save the refresh token (object->refresh_token) into a cookie called 'token' and make last for 1 month
    if (isset($sessionToken->refresh_token)) { //refresh token is only set after a proper authorisation
        $number_of_days = 30 ;
        $date_of_expiry = time() + 60 * 60 * 24 * $number_of_days ;
        setcookie('token', $sessionToken->refresh_token, $date_of_expiry);
    }
}
else if (isset($_COOKIE["token"])) {//if we don't have a session we will grab it from the cookie
    $client->refreshToken($_COOKIE["token"]);//update token
}

if ($client->getAccessToken()) {
    $calList = $cal->calendarList->listCalendarList();
    print "<h1>Calendar List</h1><pre>" . print_r($calList, true) . "</pre>";
    $_SESSION['token'] = $client->getAccessToken();
} else {
    $authUrl = $client->createAuthUrl();
    print "<a class='login' href='$authUrl'>Select a calendar!</a>";
}
0
Soth

Cookieとセッションを使用する代わりに、データベースに保存して使用する必要があります。

drupalサイトの同様の実装はGoogleOAuth2サンドボックスにあります http://drupal.org/sandbox/sadashiv/1857254 このモジュールを使用すると、 drupalの管理インターフェース。次に、googleからフェッチしたアクセストークンを使用してから、google_oauth2_account_loadまたはgoogle_oauth2_client_getのapi関数を使用してGoogle_Clientを取得し、api呼び出しを実行できます。

0
sadashiv