0

尝试使用 JSON 获取推文。我有推文 ID,但没有任何返回。有任何想法吗?

这是我使用的代码

$.getJSON("https://api.twitter.com/1/statuses/show.json?id=204981356940369920", function(data) {
 $("#twitter").html(data[0].text);

});

4

1 回答 1

0

那是返回 JSON。由于同源安全策略,您需要使用JSONP

所以,调用需要

https://api.twitter.com/1/statuses/show.json?id=204981356940369920&callback=whatever

如果你使用 jQuery,你可以使用

https://api.twitter.com/1/statuses/show.json?id=204981356940369920&callback=?

jQuery 会自动添加回调

于 2012-05-28T16:48:08.570 回答