/// <summary> /// Gets a list of IDs representing the friends of a given user. /// </summary> /// <param name="screenName">The screen name of the user.</param> /// <param name="options">The options for the call.</param> public TwitterIdsResponse GetIdsFromScreenName(string screenName, TwitterFollowersIdsOptions options) { return(TwitterIdsResponse.ParseJson(Raw.GetIdsFromScreenName(screenName, options))); }
/// <summary> /// Gets a list of IDs representing the friends of a given user. /// </summary> /// <param name="userId">The ID of the user.</param> /// <param name="options">The options for the call.</param> public TwitterIdsResponse GetIdsFromUserId(long userId, TwitterFollowersIdsOptions options) { return(TwitterIdsResponse.ParseJson(Raw.GetIdsFromUserId(userId, options))); }