Matomo 的直播 API 不尊重日期
Matomo's Live API not respecting date
当我使用 Matomo 的 Live API 通过 getVisitorProfile() 获取用户配置文件时,传入的日期是忽略。
curl -N -i -X POST -d 'token_auth=xxxlanguage=en&format=json&module=API&method=Live.getVisitorProfile&idSite=1&date=yesterday&period=day&segment=eventCategory==MediaVideo&visitorId=xxx' https://myurl.matomo.cloud/index.php
触发此命令我得到所有上次访问,而不是请求的时间段。这是一个错误还是故意的?如果是故意的,正确的查询或方法是什么?
Matomo 报告 API 中的 Live.getVisitorProfile
没有日期选项,它接受的唯一选项是 idSite, visitorId = '', segment = '', limitVisits = ''
您可以在此处的报告 API 参考文档中查看实时 API 可用的选项:https://developer.matomo.org/api-reference/reporting-api#Live
当我使用 Matomo 的 Live API 通过 getVisitorProfile() 获取用户配置文件时,传入的日期是忽略。
curl -N -i -X POST -d 'token_auth=xxxlanguage=en&format=json&module=API&method=Live.getVisitorProfile&idSite=1&date=yesterday&period=day&segment=eventCategory==MediaVideo&visitorId=xxx' https://myurl.matomo.cloud/index.php
触发此命令我得到所有上次访问,而不是请求的时间段。这是一个错误还是故意的?如果是故意的,正确的查询或方法是什么?
Matomo 报告 API 中的 Live.getVisitorProfile
没有日期选项,它接受的唯一选项是 idSite, visitorId = '', segment = '', limitVisits = ''
您可以在此处的报告 API 参考文档中查看实时 API 可用的选项:https://developer.matomo.org/api-reference/reporting-api#Live