php - 如何使用 Google Analytics PHP API 列出管理配置文件?

标签 php google-analytics google-api google-analytics-api google-api-php-client

我正在尝试使用最新的 PHP 客户端 API (https://github.com/google/google-api-php-client) 检索 Google Analytics 管理配置文件

我有以下代码片段:

// we've got the token, so set it
$google_client->setAccessToken($_SESSION['access_code']);

if ($google_client->getAccessToken()) {
    $profiles = $google_analytics_service->management_profiles->listManagementProfiles("~all", "~all");
    print "<h1>Profiles</h1><pre>" . print_r($profiles, true) . "</pre>";
}

/* $url = 'https://www.googleapis.com/analytics/v3/management/accounts/~all/webproperties/~all/profiles'; */
/* // json decode as array */
/* $analytics_auth = json_decode($_SESSION['access_code'], true); */

/* $ch = curl_init($url . '?access_token=' . $analytics_auth['access_token']); */
/* curl_exec($ch); */
/* curl_close($ch); */

我得到的错误信息是:

Error calling GET https://www.googleapis.com/analytics/v3/management/accounts/~all/webproperties/~all/profiles?key=AIza[SNIP]: (403) Access Not Configured

注意:但是我决定对 cURL 运行相同的操作,它返回一个包含配置文件(注释代码)的 JSON 数组。这是一个错误,还是我?我注意到的是我的 access_token 以“ya29”开头。

最佳答案

我认为你错过了一步:

   <?php    
    require_once 'Google/Client.php';
    require_once 'Google/Service/Analytics.php';  
    session_start(); 
    $client = new Google_Client();
    $client->setApplicationName("Client_Library_Examples");
    $client->setDeveloperKey("{developerkey}");  
    $client->setClientId('{clientID}.apps.googleusercontent.com');
    $client->setClientSecret('{Client secret}');
    $client->setRedirectUri('http://www.daimto.com/Tutorials/PHP/Oauth2.php');
    $client->setScopes(array('https://www.googleapis.com/auth/analytics.readonly'));


    //For loging out.
    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'])) {
        print "<a class='logout' href='".$_SERVER['PHP_SELF']."?logout=1'>LogOut</a><br>";
        $client->setAccessToken($_SESSION['token']);
        $service = new Google_Service_Analytics($client);    

        // request user accounts
        $accounts = $service->management_accountSummaries->listManagementAccountSummaries();

       foreach ($accounts->getItems() as $item) {
        echo "Account: ",$item['name'], "  " , $item['id'], "<br /> \n";

        foreach($item->getWebProperties() as $wp) {
            echo '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;WebProperty: ' ,$wp['name'], "  " , $wp['id'], "<br /> \n";    

            $views = $wp->getProfiles();
            if (!is_null($views)) {
                foreach($wp->getProfiles() as $view) {
                //  echo '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;View: ' ,$view['name'], "  " , $view['id'], "<br /> \n";    
                }
            }
        }

    } // closes account summaries

    }

 print "<br><br><br>"; // fix syntax
 print "Access from google: " . $_SESSION['token']; 


?>

由于 session_start 和 header 的问题,它有点乱。我添加了一些评论来帮助您了解它在做什么。这是一个简单的脚本,但您可以在此处对其进行测试 Dummy Example for Hal9k

关于php - 如何使用 Google Analytics PHP API 列出管理配置文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23474731/

相关文章:

javascript - php post动态重定向并防止表单重新提交

javascript - 使用新的谷歌异步分析片段实现“silktide cookie 同意”

google-analytics - Google Analytics(分析)使用哪种技术?

firebase - 与不使用通配符和 _TABLE_SUFFIX 相比,BigQuery -firebase 导出的工作方式有所不同

javascript - 谷歌登录 : How to use redirect_uri in javascript api

php - 如何使MySQL的值增加一,使用PHP

php - Facebook 如何记住我的密码?

php - 如何使用 PHP 从 PostgreSQL 获取数据

java - InvalidArgumentException JKS 未找到工作表 API

javascript - 像常规 map API 热图一样自定义 Fusion Table 热图?