public static void ReradusTest() { OAuthTokens tokens = Configuration.GetTokens(); FollowersOptions options = new FollowersOptions(); //options.ScreenName = _Screenname; options.UserId = 189996115; var followers = TwitterFriendship.Followers(options); }
public void ReradusTest() { //OAuthTokens tokens = Configuration.GetTokens(); FollowersOptions options = new FollowersOptions(); //options.ScreenName = _Screenname; options.UserId = 189996115; var followers = TwitterFriendship.Followers(options); Assert.IsNotNull(followers.ResponseObject, followers.ErrorMessage); }
/// <summary> /// Returns the authenticating user's followers, each with current status inline. /// </summary> /// <param name="options">The options.</param> /// <returns> /// A <see cref="TwitterStatusCollection"/> instance. /// </returns> public static TwitterResponse <TwitterUserCollection> Followers(FollowersOptions options) { return(Followers(null, options)); }
/// <summary> /// Returns the authenticating user's followers, each with current status inline. /// </summary> /// <param name="tokens">The tokens.</param> /// <param name="options">The options.</param> /// <returns> /// A <see cref="TwitterStatusCollection"/> instance. /// </returns> public static TwitterResponse <TwitterUserCollection> Followers(OAuthTokens tokens, FollowersOptions options) { Commands.FollowersCommand command = new Commands.FollowersCommand(tokens, options); return(CommandPerformer.PerformAction(command)); }
/// <summary> /// Returns the authenticating user's followers, each with current status inline. /// </summary> /// <param name="options">The options.</param> /// <returns> /// A <see cref="TwitterStatusCollection"/> instance. /// </returns> public static TwitterResponse<TwitterUserCollection> Followers(FollowersOptions options) { return Followers(null, options); }
/// <summary> /// Returns the authenticating user's followers, each with current status inline. /// </summary> /// <param name="tokens">The tokens.</param> /// <param name="options">The options.</param> /// <returns> /// A <see cref="TwitterStatusCollection"/> instance. /// </returns> public static TwitterResponse<TwitterUserCollection> Followers(OAuthTokens tokens, FollowersOptions options) { Commands.FollowersCommand command = new Commands.FollowersCommand(tokens, options); return CommandPerformer.PerformAction(command); }