如何查找一组用户使用Twitter API跟随或跟随另一个特定用户?

时间:2015-09-08 16:11:10

标签: api twitter twitter-follow

我想知道是否有任何Twitter API,我可以通过它知道如果用户跟随或跟随特定用户。

例如:

set_of_users are: { a,b,c}
particular user is: d

Then the result is a kind of

a:
following: true //(means a is following d)
friend: true //(means d is following a)

b:
following: false //(means b is not following d)
friend: false // (means

c:
following: false //(means c is not following d)
friend: true //(means c is following d)

另外,一些告诉它a,b,c和d的API都是作为朋友或追随者相互联系的?

1 个答案:

答案 0 :(得分:1)

您可以将朋友/ ids端点用于朋友:

https://dev.twitter.com/rest/reference/get/friends/ids

为粉丝使用关注者/ ids端点:

https://dev.twitter.com/rest/reference/get/followers/ids

这些返回ID,这很好,因为它很快,并允许您使用较少数量的查询拉入整个列表。

一旦有了id,就可以使用users / lookup端点来获取用户数据。它有一个user_id参数,您可以通过逗号分隔的id列表一次收集多个用户记录:

https://dev.twitter.com/rest/reference/get/users/lookup

如果您是新用户,则应访问Twitter文档页面并查看概述和最佳做法。这些将回答你将要遇到的很多问题。例如您将要进行的查询类型可能会导致您进入速率限制,因此阅读这些将会在以后节省很多挫折。

https://dev.twitter.com/overview/documentation

没有用于管理图表的API。