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