ユーザーのセットが特定のユーザーをフォローしているか、フォローしているかを知ることができる 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 がありますか?