他の人のフォロワーの名前の取得
例 オバマ
ただし、APIの制限で100人までしか
取得できない。
require 'rubygems' require 'twitter' oauth=Twitter::HTTPAuth.new('Email','pass') agent = Twitter::Base.new(oauth) agent.followers(:screen_name => 'BarackObama').each {|f| puts f.name }
参考:
http://watcher.moe-nifty.com/memo/docs/twitterAPI20.txt
http://usy.jp/twitter/index.php
http://twitter.rubyforge.org/twitter/
Thanks, kermitonphd