In a website I use JSON requests to show de last tweet of the website owner. This worked fine until now.
Has something changed according to JSON requests?
The used script is:
$.getJSON(“http://twitter.com/statuses/user_timeline/username.json?callback=?", function(data) {
$(”#last_tweet").html(data[0].text);
});
and in the html code de following layer: