繁体   English   中英

如何从网站的Google Analytics(分析)中查询数据?

[英]How to query data from Google Analytics of a site?

首先,我以前从未使用过Google Analytics(分析),现在,当我需要一点点混乱来掌握流程时,我从来没有使用过。

我在网上做了很多研究。 我遇到的是,您需要具有在开发人员控制台上创建的密钥以进行身份​​验证。 如果我有此密钥,则可以按照发现的标准示例检索站点所需的任何数据。

但是我有一些疑问:

  1. 我在自由职业者的基础上工作。 因此,我的客户使我可以访问其网站的Google Analytics(分析)。 那么,如何读取访问人数等分析数据呢? 由于已经允许我的电子邮件访问数据,因此我可以查询还是仍然需要json格式的身份验证密钥?
  2. 如果我需要json键,它如何工作? 就像我在开发人员控制台https://console.developers.google.com创建密钥并使用该密钥读取客户端数据一样吗? 只要他们在帐户中添加了我,此密钥是否可以充当一站式中心来验证自己从任何站点访问任何api的身份?
  3. 我在这里访问客户的google分析数据: https://analytics.google.com/analytics/web : https://analytics.google.com/analytics/web

请向我解释如何通过PHP读取他人站点数据的正确流程。我只需要总体思路即可。

先感谢您。

我尝试一个例子首先,谷歌客户端

作曲家需要“ google / apiclient”

在console.developers.google.com中:

  • 启用分析API
  • 定义一个项目(例如:project-id)

2)凭据文件

在以下位置创建服务帐户:

https://console.developers.google.com/iam-admin/serviceaccounts?project= project-id

在此处输入图片说明

通过这样,您将在“ path / to / the / service-account-credentials.json ”中创建凭据文件。

{
  "type": "service_account",
  "project_id": "project-id",
  "private_key_id": "1234567890abcderf1234567890abcderf1234567890abcderf",
  "private_key": "-----BEGIN PRIVATE KEY-----\nBASE64KEY=\n-----END PRIVATE KEY-----\n",
  "client_email": "service-user@some.domain.gserviceaccount.com",
  "client_id": "000000000000000000000000000000",
  "auth_uri": "https://accounts.google.com/o/oauth2/auth",
  "token_uri": "https://accounts.google.com/o/oauth2/token",
  "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
  "client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/cront-reriever-search-stats%40redooc-dot-com.iam.gserviceaccount.com"
}

3)定义所需的内容($ infos),对于所需的女巫视图($ viewId)和凭据文件($ credentials_file)和日期范围,您将查询API并在$ response中得到结果

 $infos= [
    'users'              => 'ga:users',
    'pageviews'              => 'ga:pageviews',
    'pageviewsPerSession' => 'ga:pageviewsPerSession',
    'unique page view'       => 'ga:uniquePageviews',
    'organicSearches'          => 'ga:organicSearches',
    'avgSessionDuration'      => 'ga:avgSessionDuration',
    'avgTimeOnPage'  => 'ga:avgTimeOnPage',
];
$credentials_file='path/to/the/service-account-credentials.json';

$viewId='1600000'; // the view ID see imgae            
$client = new \Google_Client();
$credentials_file = $this->checkServiceAccountCredentialsFile()) {
$client->setAuthConfig($credentials_file);
$client->addScope("https://www.googleapis.com/auth/analytics.readonly");
$analytics = new \Google_Service_AnalyticsReporting($client);
$response = getReport($viewId, $analytics, $infos, $DateStart, $DateEnd);

在此处输入图片说明

添加 getReport功能

function getReport($viewId, $analytics, $dataAnalytics, $startDate, $endDate)
    {

        $dateRange = new \Google_Service_AnalyticsReporting_DateRange();
        $dateRange->setStartDate($startDate);
        $dateRange->setEndDate($endDate);


        // Create the ReportRequest object.
        $request = new \Google_Service_AnalyticsReporting_ReportRequest();
        $request->setViewId($viewId);
        $request->setDateRanges($dateRange);

        // Create the Metrics object.
        $_metrics = [];
        foreach ($dataAnalytics as $gaLabel => $gaValue) {
            $metric = new \Google_Service_AnalyticsReporting_Metric();
            $metric->setExpression($gaValue);
//            $metric->setAlias($gaLabel);
            $_metrics[] = $metric;
        }

        $request->setMetrics($_metrics);

        $body = new \Google_Service_AnalyticsReporting_GetReportsRequest();
        $body->setReportRequests(array($request));
        return $analytics->reports->batchGet($body);
    }

您可以使用两种方法将站点搜索用于基于POST的搜索引擎:

选项1:配置您的Web应用程序以将查询关键字附加到URL的末尾(例如, http : //www.example.com/search_results.php?q=keyword ),然后如前所述设置站点搜索部分。

选项2:自定义结果页上的跟踪代码,以动态指定包含查询关键字的虚拟页路径。 结果页面上的跟踪代码如下所示:

analytics.js:ga('send','pageview','/search_results.php?q=keyword');

参考: https : //support.google.com/analytics/answer/1012264?hl=zh_CN

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM