ユーザーをフォローしている人の数を正常に取得する次のコードが既にあります。
Dim followersResponse As TwitterResponse(Of UserIdCollection) = TwitterFriendship.FollowersIds(tokens)
If followersResponse.Result <> RequestResult.Success Then
Else
labelNumFollowers.Text = followersResponse.ResponseObject.Count
End If
しかし、私が理解できないのは、ユーザーがフォローしている合計人数を取得する方法です。
(ユーザーが公開したツイートの総数を特定する方法があるかどうかも知りたいです。)