我已经有以下代码成功检索了关注用户的人数:
Dim followersResponse As TwitterResponse(Of UserIdCollection) = TwitterFriendship.FollowersIds(tokens)
If followersResponse.Result <> RequestResult.Success Then
Else
labelNumFollowers.Text = followersResponse.ResponseObject.Count
End If
但我不知道如何检索用户关注的总人数。
(我还想知道是否有一种方法可以确定用户发布的推文总数。)