TweetSharp - 如何获取好友列表?

发布于 2024-12-17 16:08:22 字数 32 浏览 3 评论 0原文

如何使用tweet Sharp获取用户的好友列表?

How do I get the user's friend list using tweet sharp?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

開玄 2024-12-24 16:08:22

这是一个替代解决方案,我不知道如何使用 tweet Sharp 来做到这一点,但你可以调用:

https://api.twitter.com/1/followers/ids.json?cursor=-1&screen_name=yourusername

然后你会得到一个带有 ids 的 json 文件。

要获取关注者的信息,您可以使用:(

https://api.twitter.com/1/users/lookup.json?user_id=123456789&include_entities=true 

关注者的 id 为 123456789)

更多信息:

https://dev.twitter.com/docs/api/1/get/followers/ids

https://dev.twitter.com/docs/api/1/get/users /查找

This is an alternative solution, I don't know how to do it with tweet sharp, but you can make a call to:

https://api.twitter.com/1/followers/ids.json?cursor=-1&screen_name=yourusername

Then you get a json file with the ids.

To get the info of your followers, you can use:

https://api.twitter.com/1/users/lookup.json?user_id=123456789&include_entities=true 

(With 123456789 being the id of the follower)

More info:

https://dev.twitter.com/docs/api/1/get/followers/ids

https://dev.twitter.com/docs/api/1/get/users/lookup

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文