1
OAuthTokens tokens = new OAuthTokens();
tokens.AccessToken = "188817262xxxxx";
tokens.AccessTokenSecret = "GNqhB1gkxxxx";
tokens.ConsumerKey = "Q6xxxxx";
tokens.ConsumerSecret = "2eZyxxxxxx";

var<TwitterUser> showUserResponse = TwitterUser.Show(tokens, "twitterUsername");
if (showUserResponse.Result == RequestResult.Success)
    {
    string screenName = showUserResponse.ResponseObject.ScreenName;
    Response.Write(screenName);
    Response.Write("<br>");
    Response.Write(showUserResponse.ResponseObject.NumberOfFollowers);
    }

このコードを使用すると、TwitterscreenNameとを取得できますが、これらのフォロワーをasp.netアプリケーションに出力しnumberOfFollowersたいと思います。screenNameどうすればそれを達成できますか?

FollowersOptions options = new FollowersOptions();
options.ScreenName = "wallace740";
TwitterResponse<TwitterUserCollection> followers = TwitterFriendship.Followers(options);

// Response.Write(followers.Content);

screenNameこのJSONからフォロワーの数を取得するにはどうすればよいですか( followers.ContentJSONの結果が得られます)?

4

1 に答える 1

1

ReponseObjectを介して列挙できます。

        foreach (var follower in followers.ResponseObject)
        {
            follower.ScreenName;
        }
于 2012-11-27T07:49:04.283 に答える