【问题标题】:OAuth issue in importing google contacts导入谷歌联系人时的 OAuth 问题
【发布时间】:2015-10-25 01:30:04
【问题描述】:

早上好 - 我正在使用以下 YouTube 教程 Tutoriel PHP - Importer des contacts Google 尝试导入 Google 联系人。

当我单击链接以导入 Google 联系人时,我没有请求许可并获取联系人并将其显示在屏幕上,而是收到以下错误:

警告:Google_Client::authenticate() 缺少参数 1,调用 在第 34 行的 /var/www/html/restaurant_test/index.php 中定义 /var/www/html/restaurant_test/lib/google-api-client/Google_Client.php 在第 124 行

注意:未定义的变量:代码在 /var/www/html/restaurant_test/lib/google-api-client/Google_Client.php 在第 127 行

致命错误:带有消息的未捕获异常“Google_Auth_Exception” “无效代码”在 /var/www/html/restaurant_test/lib/google-api-client/Auth/OAuth2.php:88 堆栈跟踪:#0 /var/www/html/restaurant_test/lib/google-api-client/Google_Client.php(127): Google_Auth_OAuth2->验证(NULL,假)#1 /var/www/html/restaurant_test/index.php(34): Google_Client->authenticate() #2 {main} 抛出 /var/www/html/restaurant_test/lib/google-api-client/Auth/OAuth2.php 上 第 88 行

请告诉我如何解决这些错误。谢谢。

这是我的代码:

<?php 
error_reporting(E_ALL);
ini_set("display_errors", 1);

session_start(); ?>
<!DOCTYPE html>
<html class="no-js" lang="en"/>
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width" />
    <title>Google Contacts API</title>
</head>

<body>
<h2>Google Contacts API v3.0</h2>
<?php
require_once 'lib/google-api-client/autoload.php';
require 'lib/google-api-client/Config.php';
require 'lib/google-api-client/Google_Client.php';

$client_id = 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.bbbbbb.cccccccccccc.com';
$client_secret = 'oUe3fsfds4gfg23ha93kmKFkfgKZ';
$redirect_uri = 'http://ccccccccccccccccccc.com/rddddddddddd/index.php';

$client = new Google_Client();
$client -> setApplicationName('contact');
$client -> setClientid($client_id);
$client -> setClientSecret($client_secret);
$client -> setScopes('https://www.google.com/m8/feeds');
$client -> setRedirectUri($redirect_uri);
$client -> setAccessType('online');

if (isset($_GET['code'])) {
    $client->authenticate();
    $_SESSION['token'] = $client->getAccessToken();
    header('Location: ' . $redirect_uri);
}

if(!isset($_SESSION['token']))
{
    $url = $client->createAuthUrl();
    echo '<a href="' . $url . '">Import Google Contacts</a>';
}else{
        $client->setAccessToken($_SESSION['token']);
        $token = json_decode($_SESSION['token']);
        $token->access_token;
        $curl = curl_init("https://www.google.com/m8/feeds/contacts/default/full?alt=json&max-results=50&access_token=" . $token->access_token);
        curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($curl, CURLOPT_TIMEOUT, 10);
        $contacts_json = curl_exec($curl);
        curl_close($curl);
        $contacts = json_decode($contacts_json, true);
        $return = array();
        foreach($contacts['feed']['entry'] as $contact){
            $return[] = array(
            'name' => $contact['title']['$t'],
            'email' => isset($contact['gd$email'][0]['address']) ? $contact['gd$email'][0]['address'] : false,
            'phone' => isset($contact['gd$phoneNumber'][0]['$t']) ? $contact['gd$phoneNumber'][0]['$t'] :false,
            );
        }
        var_dump($return);
    }       
?>

</body>
</html>

【问题讨论】:

  • 这是 lib/google-api-client/Auth 中 OAuth2.php 中的“authenticate”函数 public function authenticate($code, $crossClient = false) { $this->authenticated = true;返回 $this->getAuth()->authenticate($code, $crossClient); }

标签: php authentication oauth-2.0 google-plus google-oauth


【解决方案1】:

看起来您忘记将 code 传递给 authenticate 方法。这是Google_Client.phpauthenticate方法的文档和实现:

/**
 * Attempt to exchange a code for an valid authentication token.
 * If $crossClient is set to true, the request body will not include
 * the request_uri argument
 * Helper wrapped around the OAuth 2.0 implementation.
 *
 * @param $code string code from accounts.google.com
 * @param $crossClient boolean, whether this is a cross-client authentication
 * @return string token
 */
public function authenticate($code, $crossClient = false)
{
  $this->authenticated = true;
  return $this->getAuth()->authenticate($code, $crossClient);
}

因此,如下更改您的代码很可能会解决问题:

if (isset($_GET['code'])) {
    $client->authenticate($_GET['code']); // <-- Add code parameter here
    $_SESSION['token'] = $client->getAccessToken();
    header('Location: ' . $redirect_uri);
}

【讨论】:

猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2015-07-01
  • 2012-08-03
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多