Twitter API - Missing } after property list
$(document).ready(function()
{
$.ajax({url:'https://api.twitter.com/1/trends/23424829.json?callback=?', dataType:'json',
success:function(data)
{
console.dir(data);
} } );开发者_Python百科
});
example
http://jsfiddle.net/W8AAZ/i get the error missing } after property list
.. but why?
https://api.twitter.com/1/trends/23424829.json?callback=i_appear_multiple_times
Looks like twitters api is broken. :-/
精彩评论