以下是我为GA设置跟踪器对象生命周期的自定义维度:
ga('set', 'dimension1', 'custom data');
但有没有办法检查这样的维度是否存在,或者是否存在具有此类值的维度?
也许是这样的? :
ga(function(tracker) {
var dimension = tracker.get('dimension1');
console.log(dimension);
});
答案 0 :(得分:1)
不是没有验证。但是,authenticate the JavaScript API后,您可以使用Management API查看为给定媒体资源定义的自定义尺寸。
var request = gapi.client.analytics.management.customDimensions.list({
'accountId': '123456',
'webPropertyId': 'UA-123456-1'
});
request.execute(manageCustomDimensions);