-2

ユーザーの最新のツイートを取得するためにこのようなことを行う方法はありますか?したがって、ユーザーは自分のTwitter名を入力すると、最新の投稿を取得できます。

4

2 に答える 2

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

詳細については、こちらをご覧ください

JQueryの例:

$.getJSON("http://twitter.com/statuses/user_timeline/username.json?callback=?", function(data) {
     $("#twitter").html(data[0].text);
});
于 2012-04-22T02:40:16.890 に答える
0

TwitterAPIを探しています。

于 2012-04-22T02:39:54.820 に答える