technical notes about web, languages, graphics or other software development stuff.
TwitterのAPIでは、次の二つを使う。
Rubyでは以下のような感じ。
require 'twitter' ids = Twitter.friend_ids("daixque").ids[0, 10] users = Twitter.users(ids)
取得できる量に制限があるので(最大100件)、先頭の10件に絞っている。