我可以使用Management API获取配置文件ID,但它有点复杂。有没有什么容易得到我的所有个人资料ID?
谢谢,
答案 0 :(得分:3)
您是否知道在使用Management API列出配置文件时,您可以为~all
和accountId
参数传递字符webPropertyID
?因此,您需要获取所有配置文件的列表:
<强> HTTP 强>
GET https://www.googleapis.com/analytics/v3/management/accounts/~all/webproperties/~all/profiles
<强>爪哇强>
Profiles profiles = analytics.management.profiles.list("~all", "~all").execute();
从返回的配置文件中读取ID也很简单。
你怎么能期望有更简单的方法?