1

我已经有以下代码成功检索了关注用户的人数:

Dim followersResponse As TwitterResponse(Of UserIdCollection) = TwitterFriendship.FollowersIds(tokens)
If followersResponse.Result <> RequestResult.Success Then
Else
labelNumFollowers.Text = followersResponse.ResponseObject.Count
End If

但我不知道如何检索用户关注的总人数。

(我还想知道是否有一种方法可以确定用户发布的推文总数。)

4

1 回答 1

2

追随者数量的名称有点奇怪,它是:NumberOfFriends。要获取用户发送的推文数量,请使用 NumberOfStatuses

Dim showUserResponse As TwitterResponse(Of TwitterUser) = TwitterUser.Show(tokens, labelUsername.Text)
labelNumFollowing.Text = showUserResponse.ResponseObject.NumberOfFriends
labelNumTweets.Text = showUserResponse.ResponseObject.NumberOfStatuses

我希望 VB 语法是正确的,因为我是 C# 程序员

于 2012-12-11T15:31:31.760 回答