フィードから上位3つのツイートを取得するスクリプトがあります。これは問題なく機能していましたが、JSONで次のエラーが返されます。
{"errors":[{"message":"Sorry, that page does not exist","code":34}]}
Twitterは、これを従来の404 not foundエラーとして説明していますが、TwitterWebサイトの「APIステータス」による中断は見られません。
ツイートを取得する方法に何か変更がありますか?
私のコード:
$.getJSON('http://twitter.com/statuses/user_timeline.json?screen_name=' + user + '&count=3&include_rts=true&callback=?', function(data) { });
ありがとう。