Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
尝试使用 JSON 获取推文。我有推文 ID,但没有任何返回。有任何想法吗?
这是我使用的代码
$.getJSON("https://api.twitter.com/1/statuses/show.json?id=204981356940369920", function(data) { $("#twitter").html(data[0].text);
});
那是返回 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 会自动添加回调