Piwik Analytics 通过 REST 获取特定页面的汇总统计信息

发布于 2024-11-29 06:42:44 字数 828 浏览 1 评论 0原文

尝试使用 REST API 通过 http 来实现 Piwik,但需要一些帮助。

我想做的是获取自定义字段 = x 的特定页面的分析。

我不确定我是否以正确的方式进行处理,但到目前为止我已经做到了:

http://www.mysite.co.uk/dashboard/analytics/index.php?module=API&method=VisitsSummary.get&idSite=1&period=month&date=today&segment= customVariableValue1==x&filter_limit=20&format=xml&token_auth=xxxxxxxxxxxxxxxxxx

我的自定义字段已设置并可在管理员中查看。

然而结果似乎一切都返回 0。我正在通过将 url 直接插入浏览器以及在 php 中获取来进行测试。

还有一种方法可以获取特定页面和给定日期范围(其中自定义字段 = x)的所有统计信息?我在 API 文档中似乎看不到这一点。

任何帮助/示例将不胜感激。

Trying to implement Piwik using REST API over http but need a little help.

What I'm trying to do is get the analytics for a particular page where a custom field = x.

I'm not sure if I'm going about it the right way but I have this so far:

http://www.mysite.co.uk/dashboard/analytics/index.php?module=API&method=VisitsSummary.get&idSite=1&period=month&date=today&segment=customVariableValue1==x&filter_limit=20&format=xml&token_auth=xxxxxxxxxxxxxxxxx

My custom field is set up and viewable in the admin.

However the result just seems to return 0 for everything. I'm testing by inserting the url directly into a browser and also by fetching in php.

Also is there a method to get all statistics for a particular page and given date range where custom field = x? I can't seem to see one in the API docs.

Any help/ examples would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

感情旳空白 2024-12-06 06:42:44

如果其他人碰巧在寻找这个,我最终使用了 getPageUrl 方法:

$url = "http://www.mysite.co.uk/piwik/index.php?module=API&method=Actions.getPageUrl&pageUrl=/foo.php?id=" . $id . "&idSite=1&period=month&date=today&format=php&filter_limit=1&token_auth=xxxx";

问候,

fl3x7

In case anyone else happens to be looking for this I ended up using the getPageUrl method:

$url = "http://www.mysite.co.uk/piwik/index.php?module=API&method=Actions.getPageUrl&pageUrl=/foo.php?id=" . $id . "&idSite=1&period=month&date=today&format=php&filter_limit=1&token_auth=xxxx";

regards,

fl3x7

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文