获取 Twitter 关注者的用户名列表

发布于 2024-12-11 16:18:53 字数 367 浏览 1 评论 0原文

我正在尝试获取某个 Twitter 用户名后面的用户名列表。 轻松获取关注者 ID 列表

我可以使用http://api.twitter.com/1/followers/ids.json?screen_name=&cursor=-1"

但是,要获取用户名,我需要对每个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

超可爱的懒熊 2024-12-18 16:18:53

您可以使用 users/lookup在一次调用中查找多个用户 ID,例如:

http://api.twitter.com/1/users/lookup.json?user_id=<userId1>,<userId2>

You can use users/lookup to look up multiple user IDs in one call, for example:

http://api.twitter.com/1/users/lookup.json?user_id=<userId1>,<userId2>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文