can't get the twitter status updates from jQuery
Posted
by Bunny Rabbit
on Stack Overflow
See other posts from Stack Overflow
or by Bunny Rabbit
Published on 2010-06-12T10:35:07Z
Indexed on
2010/06/12
10:42 UTC
Read the original article
Hit count: 226
why is the code below showing 'got the result null' alertbox ? while the request seems to be sending a proper json.
$(function(){
$.getJSON('http://api.twitter.com/1/statuses/user_timeline.json?screen_name=twitterusername', function(data) {
alert('got the result '+data);
});
});
© Stack Overflow or respective owner