5

我在多个页面上使用 Google API 时遇到问题。Google 的示例运行良好,但所有代码都在一页上。

我有两页。第一页,用户单击登录按钮和第二页,我使用 google api 提取用户信息。

第一页:

<?php

########## Google Settings.. Client ID, Client Secret from https://cloud.google.com/console #############
$google_client_id       = 'myid';
$google_client_secret   = 'mysecret';
$google_redirect_url    = 'http://www.myWebsite.com/secondPage.php'; //path to your script
$google_developer_key   = 'mydeveloperkey';



//include google api files
require_once '../includes/Google/autoload.php';

//start session
session_start();

$client = new Google_Client();
$client->setClientId($google_client_id);
$client->setClientSecret($google_client_secret);
$client->setRedirectUri($google_redirect_url);
$client->addScope("https://www.googleapis.com/auth/drive");
$client->addScope("https://www.googleapis.com/auth/calendar");
$client->addScope("https://www.googleapis.com/auth/gmail.compose");
$client->addScope("https://www.googleapis.com/auth/plus.me");



$drive_service = new Google_Service_Drive($client);
$calendar_service = new Google_Service_Calendar($client);
$gmail_service = new Google_Service_Gmail($client);

/************************************************
  If we're logging out we just need to clear our
  local access token in this case
 ************************************************/
if (isset($_REQUEST['logout'])) {
  unset($_SESSION['access_token']);
}
    // Authenticating the aunthentication URL. and starting session
if (isset($_GET['code'])) {
  $client->authenticate($_GET['code']);
  $_SESSION['access_token'] = $client->getAccessToken();
  $redirect = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['secondPage.php'];
  header('Location: ' . filter_var($redirect, FILTER_SANITIZE_URL));
}


/************************************************
  If we have an access token, we can make redirect to secondPage.php, else we generate an authentication URL.
 ************************************************/
if (isset($_SESSION['access_token']) && $_SESSION['access_token']) {
  header("Location: http://www.myWebsite.com/secondPage.php");
  die();
} else {
  $authUrl = $client->createAuthUrl();
}
?>
<!DOCTYPE html>
<html lang="en">
    <head>

    </head>
    <body>  
        <a href="<?php echo $authUrl; ?>"> <img src="images/google-login-button.png" alt="Click to login"></a>

        </body>
        </html>

第二页.php:

<?php ob_start() ?>
<?php 

//include google api files
require_once '../includes/Google/autoload.php';

//start session
session_start();

$client = new Google_Client();

/************************************************
  If we have an access token, we can make
  requests, else we redirect to firstPage.php.
 ************************************************/
if (isset($_SESSION['access_token']) && $_SESSION['access_token']) {
  $client->setAccessToken($_SESSION['access_token']);
} else {
  header("Location: http://www.myWebsite.com/firstPage.php");
  die();
}
// Rest is HTML

出于某种原因,在 secondPage.php 上的 if 语句导致错误,而 else 语句将其重定向回 firstPage.php。

我对编程很陌生,我很确定我在做一些没有意义的事情。让我知道我是否应该添加更多信息。回答问题时,请尽量涵盖以下问题:

  • 我是否必须在每个页面上创建单独的 Google_client 对象。
  • 我可以通过从会话变量设置 access_token 来创建 Google_client 对象吗?
  • 我应该如何划分代码,以便在firstPage.php上只有一个登录按钮,所有其他页面都可以使用access_token来使用google服务。
  • 除了 firstPage.php 和 secondPage.php 之外,还有其他页面我将使用 googleapi。
4

1 回答 1

0

1.正确重定向

我确实对这条线有些怀疑:

$redirect = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['secondPage.php'];

这是因为我很确定,你没有在$_SERVER['secondPage.php']变量后面设置任何东西。您应该将其修复为重定向到secondPage.php,然后不需要在第一页中添加更多代码。

2. 设置账户secondPage.php

在您的第一个脚本中,您有这样的行:

$client = new Google_Client();
$client->setClientId($google_client_id);
$client->setClientSecret($google_client_secret);
$client->setRedirectUri($google_redirect_url);

而你已经在secondPage.php. 这可能是您的第二个脚本不起作用的原因,因为您的脚本不知道它使用哪个帐户工作。您必须在第二个脚本中再次配置您的脚本,就像您在第一个脚本中所做的那样。另外现在我会切断ob_start(),它可能会加强调试。

我希望您再次仔细阅读 google 存储库上的该示例。它非常不言自明,只需要你一遍又一遍地阅读它,只要你会有那种奇怪的小感觉......我可以向你保证,你可以在三个文件中轻松干净地完成它:第一个用于::authenticate()和set $_SESSION,第二个是::setAccessToken()所有的休息,第三个是所有$client类都被前一个使用的设置。

于 2015-04-27T15:38:41.207 回答