如何使用 Twython 获得 Twitter 关注者?
当指定用户的屏幕名或 user.id 时,我想获取特定用户的 Twitter 关注者/关注者列表。谁能提供它的代码片段吗?谢谢。
I want to get a list of twitter followers/following of a particular user, when their screenname or user.id is specified. Can anyone please give the code snippet for it? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我是《Twython》的作者。为此,您可以使用两种不同的方法;一种仅返回关注者 ID (
get_followers_ids
),另一种返回关注者集的状态/等 (get_followers_list
)。一些示例代码如下所示:
如果您有 ID,则需要自己进行进一步查找,因此后一种方法 (
get_followers_list
) 可能正是您想要的。请记住,Twython 函数只是镜像官方 Twitter API 文档中的 API 关键参数,因此您可以传递给参数的方法与您在文档中找到的方法相同。祝你好运!
I'm the author of Twython. There's two different methods you can use for this; one that returns just follower IDs (
get_followers_ids
), and one that returns the statuses/etc of a follower set (get_followers_list
).Some example code for one would be like the following:
If you have IDs, you'd need to do further lookups yourself, so the latter method (
get_followers_list
) may be what you want. Keep in mind that Twython functions just mirror API key parameters from the official Twitter API docs, so the methods you can pass to an argument are the same as what you'll find on the docs.Good luck!
应该是:
It should be :