我有一个脚本,可以从我的提要中获取前 3 条推文。这工作得很好,但现在它在 JSON 中返回以下错误:
{"errors":[{"message":"Sorry, that page does not exist","code":34}]}
Twitter 将此描述为经典的 404 未找到错误,但我没有看到 Twitter 网站上的 API 状态有任何中断。
我们现在获取推文的方式是否发生了变化?
我的代码:
$.getJSON('http://twitter.com/statuses/user_timeline.json?screen_name=' + user + '&count=3&include_rts=true&callback=?', function(data) { });
谢谢。