PHPとTwitter APIを使って自分のフォロワーリストを取得します。今回はスクリーンネームをずらっと表示させるだけです。 [php] OAuthRequest(“http://api.twitter.com/1/statuses/followers.xml”,”GET”,array(“cursor” => (string)$cursor)); $xml = simplexml_load_string($req); #userの数だけループさせます。 foreach($xml->users->user as $key => $value){ print $i.”:”.$value->screen_name.” “; $i++; } #返却されたXMLの中からnext_cursorの値を取得します。 $cursor = $xml->next_cursor; } ?> [/php] 「ht