$KEY_FILE_LOCATION = __DIR__ . '/service-account-credentials.json';
// Create and configure a new client object.
$client = new \Google_Client();
$client->setApplicationName("Hello Analytics Reporting");
$client->setAuthConfig($KEY_FILE_LOCATION);
$client->setScopes(['https://www.googleapis.com/auth/analytics']);
$analytics = new \Google_Service_Analytics($client);
// Construct the body of the request and set its properties.
$profile = new \Google_Service_Analytics_Profile();
$profile->setName('View name');
$analytics->management_profiles->insert('123425914', 'UA-2344718-15', $profile);
我尝试在GA App上插入视图,但API返回insufficient permissions error
。
如果输入错误的$VIEW_ID
,当我尝试获取数据时,则会打印相同的错误。
我在插入方法
中输入了这些参数现有VIEW_ID - 如果不存在VIEW_ID,则会发生同样的错误。
第二个参数存在APP_ID。
答案 0 :(得分:2)
Web Property,View(Profile)和Goal资源的Management API中的编写操作(例如,创建,更新,删除,修补)目前在限量版中作为开发人员预览版提供。如果您对使用这些功能感兴趣,request access to the beta。