考虑拥有100万粉丝的Twitter用户。我想收集该用户的随机页面。有没有办法做到这一点?我不想获得所有粉丝的名单,因为它会耗尽我的代币。
我正在寻找类似的东西:
follower_ids = api.followers_ids(user_id, page=page_index)
其中page_index是随机页面。
感谢。
答案 0 :(得分:0)
从the documentation,您可以获得用户的关注者数量,例如twitterdev
:
https://api.twitter.com/1.1/users/show.json?screen_name=twitterdev
除其他外,还会返回followers_count
:
{
...
"followers_count": 143916,
...
}
从那里,您可以了解随机关注者所在的页面。
为了清楚起见,我从未使用过Twitter或API,并且刚刚搜索过你。
答案 1 :(得分:0)
您可以从所有ID中选择20个ID,例如:
SCREEN_NAME= "the_user_name"
followersIds = api.followers_ids(SCREEN_NAME)
print followersIds[:20]