我正在寻找解决此已发布 Twitter API 错误的方法:http ://code.google.com/p/twitter-api/issues/detail?id=214
当您获取推文时,推文会返回不正确的 User_id。但是,它确实为您提供了正确的屏幕名称。
我的目标是使用 API 做两件事:
获取我的 twitter 帐户的所有关注者,这对于 ruby 脚本来说是微不足道的:
myfollowers = Twitter.follower_ids("justinzollars")
(twitter gem)对应于这个 api 调用:https ://dev.twitter.com/docs/api/1/get/followers/ids仅保存来自单个用户的推文。https://dev.twitter.com/docs/api/1/get/search
问题是第一个 api 调用返回user_ids
,而 tweets 搜索调用返回from_user_id_str
(user_name)。我不想进行数以万计的 api 调用,向 twitter 询问从 tweets search api 调用返回user_id
的每个from_user_id_str
调用。
我怎样才能有效地解决这个问题?