获取 Twitter 关注者的用户名列表
我正在尝试获取某个 Twitter 用户名后面的用户名列表。 轻松获取关注者 ID 列表
我可以使用http://api.twitter.com/1/followers/ids.json?screen_name=
但是,要获取用户名,我需要对每个 ID 进行调用以获取用户名
http://api.twitter.com/1/users/show.json?user_id=
立即达到 100 api 调用限制
是否有更优雅的方式 。可以通过php一次性获取所有用户名吗?
I am trying to get the list of the usernames that are following a certain Twitter username.
I can easily get a list of the ID's of followers by using
http://api.twitter.com/1/followers/ids.json?screen_name=<ScreenName>&cursor=-1"
but then, to get the usernames I'd need to make a call for each ID to get the username with
http://api.twitter.com/1/users/show.json?user_id=<userId>
which reaches at once the 100 api call limit.
Is there a more elegant way in which I can get all usernames at once by way of php?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
users/lookup
在一次调用中查找多个用户 ID,例如:You can use
users/lookup
to look up multiple user IDs in one call, for example: