"致命错误:Class' Google_Http_Request'没找到"同时使用Oauth2.0身份验证和Google Contact API for PHP

时间:2015-11-09 06:43:18

标签: php api oauth

我正在尝试使用Google Contact API检索所有联系人。为此,我使用了Oauth2.0身份验证和Google Contact API for PHP。

但是我收到了这个错误: "致命错误:Class' Google_Http_Request'未在"

中找到

无法理解原因。我甚至使用了Google_HttpRequest,但错误仍然相同,但这次是针对" Google_HttpRequest"。

使用的代码如下,可以帮助一些人,因为对此,互联网上没有任何帮助

<?php
//require_once 'C:/xampp/htdocs/google-api-php-client-master/src/Google/Client.php';

require_once 'C:/xampp/htdocs/google-api-php-client-master/vendor/autoload.php';// or wherever autoload.php is located
session_start();
//Declare your Google Client ID, Google Client secret and Google redirect uri in  php variables
$google_client_id = 'xxx-yyy.apps.googleusercontent.com';
$google_client_secret = 'xxxx';
$google_redirect_uri = 'https://localhost:4433/xxx.php';
$client = new Google_Client();
$client -> setApplicationName('My application name');
$client -> setClientid($google_client_id);
$client -> setClientSecret($google_client_secret);
$client -> setRedirectUri($google_redirect_uri);
$client -> setAccessType('online');

$client->setApplicationName('Google Contacts PHP Sample');

$client->setScopes("http://www.google.com/m8/feeds/");

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

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

/// $auth_code = $_GET["code"];

/// $_SESSION['google_code'] = $auth_code;

/// header('Location: ' . $google_redirect_uri);

///}

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

if (isset($_SESSION['token'])) {
$client->setAccessToken($_SESSION['token']);
}
if (isset($_REQUEST['logout'])) {
unset($_SESSION['token']);
$client->revokeToken();
}

if ($client->getAccessToken()) {
//$req = new Google_Http_Request("https://www.google.com/m8/feeds/contacts/default/full", 'GET', null, null);   
$req = new Google_Http_Request("https://www.google.com/m8/feeds/contacts/default/full");
$val = $client->getIo()->authenticatedRequest($req);



// The contacts api only returns XML responses.
$response = json_encode(simplexml_load_string($val->getResponseBody()));
print "<pre>" . print_r(json_decode($response, true), true) . "</pre>";

// The access token may have been updated lazily.
$_SESSION['token'] = $client->getAccessToken();
} else {
$auth = $client->createAuthUrl();
}

if (isset($auth)) {
print "<a class=login href='$auth'>Connect Me!</a>";
} else {
print "<a class=logout href='?logout'>Logout</a>";
}

1 个答案:

答案 0 :(得分:0)

你正试图混合那些无法混合的东西。

您使用的当前Google php client library仅支持发现服务API。哪些是返回Json的新API。

google contacts API是一个较旧的Gdata api,它返回XML。两个人不会说同一种语言。我还没试过,但可以在这里找到旧的GData客户端库。