查找用户最近的推文

时间:2012-04-22 02:33:47

标签: json twitter

我想知道有没有办法做这样的事情来获取用户最近的推文?因此,用户会输入他们的推特名称,这可以获得他们最近的帖子。

2 个答案:

答案 0 :(得分:1)

尝试使用此(PHP):

$username="user"; // set user name
$format="json"; // set format
$tweet=json_decode(file_get_contents("http://api.twitter.com/1/statuses/user_timeline/$username.$format")); // get tweets and decode them into a variable

echo $tweet[0]->text; // show latest tweet

有关详细信息,请查看this

JQuery示例:

$.getJSON("http://twitter.com/statuses/user_timeline/username.json?callback=?", function(data) {
     $("#twitter").html(data[0].text);
});

答案 1 :(得分:0)

您正在寻找Twitter API