在谷歌分析中,如何从AccountEntry获取网站?
在谷歌分析中,如何从 AccountEntry 获取网站?
看起来像这样,如果我这样做:
- entry.getProperty(“ga:accountName”)
- entry.getTitle().getPlainText()
我明白了。但这是正确的吗? 它记录在哪里?
in google analytics, how do I get the site from the AccountEntry ?
looks like that if I do:
- entry.getProperty("ga:accountName")
- entry.getTitle().getPlainText()
I get it. but is this correct ?
where is it documented ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 XML 帐户供稿参考,其中包含从 API 返回的所有数据。
此处 访问所有重要帐户提要信息的 Java 示例:
这是示例结果:
使用以下代码获取请求的站点:
Have a look to XML account feed reference with all the data returned from the API.
Here a Java example that access all the important account feed information:
This is a sample result:
Use the following code to get the site as requested: