gpt4 book ai didi

php - 为什么我的 Google Analytics API 4 返回错误

转载 作者:行者123 更新时间:2023-12-03 15:46:01 28 4
gpt4 key购买 nike

您好,我正在使用 PHP 和 Google Client API 开发一个小项目。我不知道为什么会收到此错误消息:

Message: Undefined property: Google_Service_Analytics::$reports

因为我的代码是正确的,与 Google 文档网页上的代码相同。

这是我的代码:

$client = new Google_Client();
$client->setApplicationName("Hello Analytics Reporting");
$client->setAuthConfig(FCPATH.'trim-tide-225210-c7xxxxssz7f4c.json');
$client->setScopes(['https://www.googleapis.com/auth/analytics.readonly']);
$analytics = new Google_Service_Analytics($client);
$VIEW_ID = "ga:159882843";

// Create the DateRange object.
$dateRange = new Google_Service_AnalyticsReporting_DateRange();
$dateRange->setStartDate("7daysAgo");
$dateRange->setEndDate("today");

// Create the Metrics object.
$sessions = new Google_Service_AnalyticsReporting_Metric();
$sessions->setExpression("ga:sessions");
$sessions->setAlias("sessions");

// Create the ReportRequest object.
$request = new Google_Service_AnalyticsReporting_ReportRequest();
$request->setViewId($VIEW_ID);
$request->setDateRanges($dateRange);
$request->setMetrics(array($sessions));

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

最佳答案

您正在混合使用 Google Analytics 核心报告 v3 和 Google Analytics 报告 v4 API

使用 Google Analytics 核心报告 API v3 创建分析服务

$analytics = new Google_Service_Analytics($client);

用于创建与 Google Analytics Reporting API v4 一起使用的分析服务

$analytics = new Google_Service_AnalyticsReporting($client);

您已经创建了连接 Google Analytics 核心报告 v3 的服务,但您的代码正在尝试连接到 Google Analytics 报告 v4 API

关于php - 为什么我的 Google Analytics API 4 返回错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53722244/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com