I have a script that gets the top 3 tweets from my feed. This was working just fine but now it is returning the following error in the JSON:
{"errors":[{"message":"Sorry, that page does not exist","code":34}]}
Twitter describes this as a classic 404 not found error, but I do not see any disruption from the API status' on the Twitter website.
Has something changed in the way we now fetch Tweets?
My code:
$.getJSON('http://twitter.com/statuses/user_timeline.json?screen_name=' + user + '&count=3&include_rts=true&callback=?', function(data) { });
Thanks.