关于twitter api的问题
我想创建一个简单的 Twitter 应用程序,但有一个问题。我想向用户显示有关其关注者的信息,但这需要一个 API 请求来获取关注他的所有用户 ID 列表,然后需要许多其他 API 请求来获取用户信息 /em> 对应于刚刚获取的用户 ID。是否可以在一个请求中获取许多关注者的用户信息?
I want to create a simple Twitter application, but I have a problem. I want to show the user information about his followers, but this requires one API request to get a list of all user IDs following him, and then many additional API requests to get the user information corresponding to the user IDs that were just fetched. Is it possible to get user info for many followers in one request?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用关注者方法:
http://api.twitter.com/1/statuses/followers.xml (Twitter API 文档)
它返回每个关注者的详细信息。
Use the Followers method:
http://api.twitter.com/1/statuses/followers.xml (Twitter API Documenation)
It returns detailed information about each follower.