私は 2 つの Gmail アカウント (A と B) を持っており、それぞれに独自の Google アナリティクス アカウントがあります。
http://www.daimto.com/google-oauth2-php/に従って Web アプリケーションを作成しました
私はアカウント A でログインし、アカウント A のすべてのプロファイルを取得します (これは正しいです)。
別のコンピューターからアカウント B でログインすると、アカウント "A" のアカウントが取得されます !!!!!!!
コードは次のとおりです。
<?php
require_once 'google-api-php-client/vendor/autoload.php';
session_start();
// ******************************************************** //
// Get these values from https://console.developers.google.com
// Be sure to enable the Analytics API
// ******************************************************** //
$client_id = 'xxxxxxxxxxxxxx';
$client_secret = 'xxxxxxxxxxxxxx';
$redirect_uri = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
$client = new Google_Client();
$client->setApplicationName("MY_APP_NAME");
$client->setClientId($client_id);
$client->setClientSecret($client_secret);
$client->setRedirectUri($redirect_uri);
$client->setState(md5(uniqid(rand(), true)));
$client->setScopes(array('https://www.googleapis.com/auth/userinfo.email','https://www.googleapis.com/auth/userinfo.profile','https://www.googleapis.com/auth/analytics.readonly','https://www.googleapis.com/auth/analytics.manage.users.readonly'));
$client->setAccessType('offline'); // Gets us our refreshtoken
if (isset($_GET['logout'])) {
if ($_GET['logout'] == "1") {
unset($_SESSION['token']);
}
}
// Step 2: The user accepted your access now you need to exchange it.
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));
}
// Step 1: The user has not authenticated we give them a link to login
if (!$client->getAccessToken() && !isset($_SESSION['token'])) {
$authUrl = $client->createAuthUrl();
print "<a class='login' href='$authUrl'>Connect Me!</a>";
}
// Step 3: We have access we can now create our service
if (isset($_SESSION['token'])) {
d($_SESSION['token']);
print "<a class='logout' href='".$_SERVER['PHP_SELF']."?logout=1'>LogOut</a><br>";
$client->setAccessToken($_SESSION['token']);
$service = new Google_Service_Analytics($client);
$google_oauth =new Google_Service_Oauth2($client);
$google_account = $google_oauth->userinfo->get();
// request user accounts
$accounts = $service->management_accountSummaries->listManagementAccountSummaries();
foreach ($accounts->getItems() as $item) {
echo "<b>Account:</b> ",$item['name'], " : " , $item['id'], "<br /> \n";
foreach($item->getWebProperties() as $wp) {
echo '-----<b>WebProperty:</b> ' ,$wp['name'], " : " , $wp['id'], "<br /> \n";
$views = $wp->getProfiles();
if (!is_null($views)) {
foreach($wp->getProfiles() as $view) {
echo '----------<b>View:</b> ' ,$view['name'], " : " , $view['id'], "<br /> \n";
}
}
}
}
}
function d($o){
echo("<pre>");
print_r($o);
echo("</pre>");
}
?>
The tutorial for this file can be found at <a href='http://www.daimto.com/google-oauth2-php/'>Google Oauth php</a><br>
私は何を間違っていますか!
何か案が?