Ruby:Twitter API:获取所有关注者

时间:2010-12-22 02:16:59

标签: ruby twitter

任何人都知道为什么下面的代码中的下一个光标没有改变?

cursor = "-1"
followerIds = []
while cursor != 0 do
 followers = Twitter.follower_ids("IDTOLOOKUP",{"cursor"=>cursor})

 cursor = followers.next_cursor
 followerIds+= followers.ids
 sleep(2)
end

在cursor = -1的第一次迭代之后,它被分配了来自twitter api的nextcursor。但是,当在后续迭代中将其发送到twitter API时,我会得到与第一次相同的响应..使用相同的next_cursor。

任何想法我做错了什么?我正在使用twitter gem。

1 个答案:

答案 0 :(得分:8)

编辑:[有关限速率限制的建议]

问题是follow_ids的游标选项。它应该是:

followers = Twitter.follower_ids("IDTOLOOKUP",{:cursor=>cursor})

注意使用符号,而不是字符串。在原始代码中,正在提供的“cursor”选项被忽略,follower_ids正在执行默认行为,即返回关注者的第一页。