0

我想知道是否有任何 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 都作为朋友或追随者相互关联?

4

1 回答 1

1

您可以为朋友使用 friends/ids 端点:

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

为关注者使用 follower/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。

于 2015-09-09T01:23:11.420 回答