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.Content
JSONの結果が得られます)?