J'essaie d'utiliser la bibliothèque Google API PHP Client pour Google Analytic v3.
Je peux faire fonctionner l'application simple que j'ai écrite à la maison, mais lorsque j'essaie au bureau, cela ne fonctionne pas. Lorsque je lance le programme, on me demande d'autoriser l'accès de l'application php à mon compte Google. Après avoir autorisé l'accès, j'obtiens
Google_IOException : Erreur HTTP : (0) Impossible de se connecter à l'hôte en C:\wamp\www\google\GoogleClientApi\io\Google_CurlIO.php à la ligne 128
Il est nécessaire de se connecter à un serveur proxy de mon organisation. Quelqu'un sait-il comment utiliser oauth 2 et la bibliothèque client php pour se connecter à un serveur proxy.
merci
Voici le code de mon client 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.';