Google Api PHP客户端库

时间:2013-06-11 16:37:25

标签: php google-analytics-api

我正在尝试将Google API PHP客户端库用于Google Analytic v3。

我能够运行我在家写的简单应用程序,但是当我在办公室尝试时它无效。当我运行程序时,我被要求将php应用程序授权给我的谷歌帐户。允许访问后我得到了

Google_IOException:HTTP错误:(0)无法连接到第128行的C:\ wamp \ www \ google \ GoogleClientApi \ io \ Google_CurlIO.php中的主机

必须连接到我的组织的代理服务器。有谁知道如何使用oauth 2和php客户端库连接到代理服务器。

感谢

以下是我的php客户端的代码。

session_start();
require_once dirname(__FILE__).'/GoogleClientApi/Google_Client.php';
require_once dirname(__FILE__).'/GoogleClientApi/contrib/Google_AnalyticsService.php';

$scriptUri = "http://".$_SERVER["HTTP_HOST"].$_SERVER['PHP_SELF'];

$client = new Google_Client();
$client->setAccessType('online'); // default: offline
$client->setApplicationName('My Application name');
//$client->setClientId(''); omitted for privacy
//$client->setClientSecret(''); omitted for privacy
$client->setRedirectUri($scriptUri);
//$client->setDeveloperKey(''); // API key omitted for privacy

// $service implements the client interface, has to be set before auth call
$service = new Google_AnalyticsService($client);

if (isset($_GET['logout'])) { // logout: destroy token
    unset($_SESSION['token']);
die('Logged out.');
}

if (isset($_GET['code'])) { // we received the positive auth callback, get the token     and store it in session
$client->authenticate();
$_SESSION['token'] = $client->getAccessToken();
}

if (isset($_SESSION['token'])) { // extract token from session and configure client
    $token = $_SESSION['token'];
    $client->setAccessToken($token);
}

if (!$client->getAccessToken()) { // auth call to google
    $authUrl = $client->createAuthUrl();
    header("Location: ".$authUrl);
    die;
}

echo 'Hello, world.';

4 个答案:

答案 0 :(得分:5)

添加(因为我无法在谷歌中找到任何结果)如果您想避免编辑库本身,您可以通过$ client对象指定其他curl参数。这样做的代码看起来大致如此。

$client = new Google_Client();
$client->getIo()->setOptions(array(
    CURLOPT_PROXY => 'myproxy.mywebsite.com',
    CURLOPT_PROXYPORT => 8909
));

答案 1 :(得分:2)

您必须在curl中配置代理设置。检查Google_CurlIO.php是否有一行调用curl_exec($ch)

您可能需要事先添加类似于:

的内容

curl_setopt($ ch,CURLOPT_PROXY,'your-proxy-server');

答案 2 :(得分:1)

v2.0.0更新

$client = new Google_Client();
$httpClient = $client->getHttpClient();
$httpClient->setDefaultOption("proxy", "http://{$proxyUser}:{$proxyPass}@{$proxyAddress}:{$proxyPort}");

答案 3 :(得分:0)

2.2.0版的更新

库使用Guzzle读取环境变量以自动设置(或不设置)代理(参见GuzzleHttp \ Client类)第177行:

    if ($proxy = getenv('HTTPS_PROXY')) {
        $defaults['proxy']['https'] = $proxy;
    }

我认为您需要一个HTTPS代理,因为Google OAuth无法通过简单的HTTP工作。

添加

运行putenv( 'HTTPS_PROXY = HTTPS:// {your.proxy.url}:{端口号}');

它本身就有效。