我正在尝试通过参考https://dev.twitter.com/docs/api/1/get/search来开发一个 twitter 搜索引擎。我面临一个问题;我搜索了一下,我找不到任何东西。
$.ajax({
type : "GET",
dataType : "json",
url : "http://search.twitter.com/search.json?q=" +search_value + "&rpp=5&callback=?",
success: function(data){
// Display the results
$("#search_results").html(data);
}
});
如您所知,twitter api 根据您在此链接中的搜索返回一个 json “ https://dev.twitter.com/docs/api/1/get/search (在示例请求部分)
我需要关于推文结果的“用户名”和“用户的真实姓名”,采用 json 格式,我看不到,而且我查看了https://dev.twitter.com/docs/tweet-entities但没有提示对这个。只有“user_mentions 实体”,但该用户在推文中被提及,而不是关于推文的分享者。你能帮我解决这个问题吗?