我正在尝试向 Piwik 跟踪 api (/piwik.php) 发送批量请求,但遇到了问题。当我发送请求(通过 ajax、curl 和 fiddler2 来自 PHP 脚本)时,我收到以下信息:
Debug enabled - Input parameters:<br/>array ( )
token_auth is authenticated!
Loading plugins: { Provider,Goals,UserCountry }
Current datetime: 2013-05-02 16:02:27
The request is invalid: empty request, or maybe tracking is disabled in the config.ini.php via record_statistics=0
我的帖子是这样的:
{"requests":["%3Fidsite%3D1%26url%3Dhttp%3A%2F%2Fexample.org%26action_name%3DTest+bulk+log+Pageview%26rec%3D1"],"token_auth":"mytokenhere"}
这是直接来自他们网站的示例。我确保将内容类型设置为“内容类型:应用程序/json”,并且我的配置明确定义了 record_statistics = 1。
根据文档,这应该一切正常,但我仍然收到空请求。import_logs.py 脚本也可以,所以我知道一般的批量导入没有损坏,但我不确定如何让程序接受我的数据。有没有人有运气?
谢谢!