开发者问题收集

在 Google Analytics 中添加属性

2014-10-31
761

我一直在努力将属性添加到我的 Google Analytics 帐户,到现在为止我已经坚持了 24 多个小时,我不知道我做错了什么……每次我尝试 创建 Web 属性 时,它都会返回 403(权限不足) 错误。

这是我的代码:

$client = new Google_Client();
$accountName = "[email protected]";// Email Address
$p12 = $applicationPath."/google-api-php-client-master/API-xxxxx-xxxxxxx.p12";
$client->setScopes(array(
        'https://www.googleapis.com/auth/analytics',
        'https://www.googleapis.com/auth/analytics.manage.users'
));
$client->setApplicationName('My App Sample');
$client->setClientId('xxxxxxxxxxxcl.apps.googleusercontent.com');// Client Id
$client->setAccessType('offline');
$client->setAssertionCredentials(new Google_Auth_AssertionCredentials(
                    $accountName,
                    array('https://www.googleapis.com/auth/analytics'),
                        file_get_contents($p12), 'xxxxxxxx')
                  );

$analytics = new Google_Service_Analytics($client);

try {
 $property = new Google_Service_Analytics_Webproperty();
 $property->setName('sample-property');
 $analytics->management_webproperties->insert('123456', $property);// 123456 my View Id     
} catch (apiServiceException $e) {
 print 'There was an Analytics API service error '
        . $e->getCode() . ':' . $e->getMessage();               
} catch (apiException $e) {
print 'There was a general API error '
    . $e->getCode() . ':' . $e->getMessage();
}

我尝试了所有方法,但一直收到 ( 403) 权限不足 错误。请有人指出我正确的方向,谢谢。

1个回答

您需要发送帐户 ID,而不是视图 ID。

$analytics->management_webproperties->insert('123456', $property);// 123456 my View Id     

您申请过 Beta 访问权限吗?

Beta Access: Write operations in the Management API (e.g. create, update, delete, patch) for Web Property, View (Profile), and Goal resources is currently available as a developer preview in limited beta. If you're interested in using these features, request access to the beta.

请求访问权限表单: 此处

必填字段

如果您已获得 Beta 访问权限,您可能想尝试在 Beta 论坛上发帖,我不记得那里是否有人有 PHP 代码。但我认为 setWebsiteUrl 可能是属性主体的一部分。但是它似乎没有针对 PHP 的文档记录,我必须对此进行测试。

服务帐户

另外,您似乎正在使用服务帐户,您是否在帐户级别授予服务帐户对 您尝试为其创建新网络媒体资源的 Google Analytics 帐户 的写入权限?我进行了测试,您可以使用已授予访问权限的服务帐户进行插入。

ServiceAccountSetup

Linda Lawton - DaImTo
2014-10-31