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

私はC#プログラマーなので、VB構文が正しいことを願っています

于 2012-12-11T15:31:31.760 に答える