Add a member to a list
@see dev.twitter.com/docs/api/1.1/post/lists/members/create @note Lists are limited to having 500 members. @rate_limited No @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [Twitter::List] The list. @overload add_list_member(list, user_to_add, options = {})
@param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param user_to_add [Integer, String] The user id or screen name to add to the list. @param options [Hash] A customizable set of options.
@overload add_list_member(user, list, user_to_add, options = {})
@param user [Integer, String, Twitter::User] A Twitter user ID, screen name, URI, or object. @param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param user_to_add [Integer, String] The user id or screen name to add to the list. @param options [Hash] A customizable set of options.
# File lib/twitter/rest/lists.rb, line 258 def add_list_member(*args) list_from_response_with_user(:post, '/1.1/lists/members/create.json', args) end
Adds specified members to a list
@see dev.twitter.com/docs/api/1.1/post/lists/members/create_all @note Lists are limited to having 500 members, and you are limited to adding up to 100 members to a list at a time with this method. @rate_limited No @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [Twitter::List] The list. @overload add_list_members(list, users, options = {})
@param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param users [Enumerable<Integer, String, Twitter::User>] A collection of Twitter user IDs, screen names, or objects. @param options [Hash] A customizable set of options.
@overload add_list_members(user, list, users, options = {})
@param user [Integer, String, Twitter::User] A Twitter user ID, screen name, URI, or object. @param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param users [Enumerable<Integer, String, Twitter::User>] A collection of Twitter user IDs, screen names, or objects. @param options [Hash] A customizable set of options.
# File lib/twitter/rest/lists.rb, line 198 def add_list_members(*args) list_from_response_with_users(:post, '/1.1/lists/members/create_all.json', args) end
Creates a new list for the authenticated user
@see dev.twitter.com/docs/api/1.1/post/lists/create @note Accounts are limited to 20 lists. @rate_limited No @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [Twitter::List] The created list. @param name [String] The name for the list. @param options [Hash] A customizable set of options. @option options [String] :mode (‘public’) Whether your list is public or private. Values can be ‘public’ or ‘private’. @option options [String] :description The description to give the list.
# File lib/twitter/rest/lists.rb, line 317 def create_list(name, options = {}) perform_with_object(:post, '/1.1/lists/create.json', options.merge(:name => name), Twitter::List) end
Deletes the specified list
@see dev.twitter.com/docs/api/1.1/post/lists/destroy @note Must be owned by the authenticated user. @rate_limited No @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [Twitter::List] The deleted list. @overload destroy_list(list, options = {})
@param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param options [Hash] A customizable set of options.
@overload destroy_list(user, list, options = {})
@param user [Integer, String, Twitter::User] A Twitter user ID, screen name, URI, or object. @param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param options [Hash] A customizable set of options.
# File lib/twitter/rest/lists.rb, line 278 def destroy_list(*args) list_from_response(:post, '/1.1/lists/destroy.json', args) end
Show the specified list
@see dev.twitter.com/docs/api/1.1/get/lists/show @note Private lists will only be shown if the authenticated user owns the specified list. @rate_limited Yes @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [Twitter::List] The specified list. @overload list(list, options = {})
@param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param options [Hash] A customizable set of options.
@overload list(user, list, options = {})
@param user [Integer, String, Twitter::User] A Twitter user ID, screen name, URI, or object. @param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param options [Hash] A customizable set of options.
# File lib/twitter/rest/lists.rb, line 337 def list(*args) list_from_response(:get, '/1.1/lists/show.json', args) end
Check if a user is a member of the specified list
@see dev.twitter.com/docs/api/1.1/get/lists/members/show @authentication Requires user context @rate_limited Yes @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [Boolean] true if user is a member of the specified list, otherwise false. @overload list_member?(list, user_to_check, options = {})
@param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param user_to_check [Integer, String] The user ID or screen name of the list member. @param options [Hash] A customizable set of options.
@overload list_member?(user, list, user_to_check, options = {})
@param user [Integer, String, Twitter::User] A Twitter user ID, screen name, URI, or object. @param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param user_to_check [Integer, String] The user ID or screen name of the list member. @param options [Hash] A customizable set of options.
# File lib/twitter/rest/lists.rb, line 219 def list_member?(*args) list_user?(:get, '/1.1/lists/members/show.json', args) end
Returns the members of the specified list
@see dev.twitter.com/docs/api/1.1/get/lists/members @rate_limited Yes @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [Twitter::Cursor] @overload list_members(list, options = {})
@param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param options [Hash] A customizable set of options.
@overload list_members(user, list, options = {})
@param user [Integer, String, Twitter::User] A Twitter user ID, screen name, URI, or object. @param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param options [Hash] A customizable set of options.
# File lib/twitter/rest/lists.rb, line 237 def list_members(*args) cursor_from_response_with_list(:get, '/1.1/lists/members.json', args) end
Make the authenticated user follow the specified list
@see dev.twitter.com/docs/api/1.1/post/lists/subscribers/create @rate_limited No @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [Twitter::List] The specified list. @overload list_subscribe(list, options = {})
@param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param options [Hash] A customizable set of options.
@overload list_subscribe(user, list, options = {})
@param user [Integer, String, Twitter::User] A Twitter user ID, screen name, URI, or object. @param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param options [Hash] A customizable set of options.
# File lib/twitter/rest/lists.rb, line 138 def list_subscribe(*args) list_from_response(:post, '/1.1/lists/subscribers/create.json', args) end
Check if a user is a subscriber of the specified list
@see dev.twitter.com/docs/api/1.1/get/lists/subscribers/show @rate_limited Yes @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [Boolean] true if user is a subscriber of the specified list, otherwise false. @overload list_subscriber?(list, user_to_check, options = {})
@param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param user_to_check [Integer, String, Twitter::User] A Twitter user ID, screen name, URI, or object. @param options [Hash] A customizable set of options.
@overload list_subscriber?(user, list, user_to_check, options = {})
@param user [Integer, String, Twitter::User] A Twitter user ID, screen name, URI, or object. @param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param user_to_check [Integer, String, Twitter::User] A Twitter user ID, screen name, URI, or object. @param options [Hash] A customizable set of options.
@return [Boolean] true if user is a subscriber of the specified list, otherwise false.
# File lib/twitter/rest/lists.rb, line 159 def list_subscriber?(*args) list_user?(:get, '/1.1/lists/subscribers/show.json', args) end
Returns the subscribers of the specified list
@see dev.twitter.com/docs/api/1.1/get/lists/subscribers @rate_limited Yes @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [Twitter::Cursor] The subscribers of the specified list. @overload list_subscribers(list, options = {})
@param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param options [Hash] A customizable set of options.
@overload list_subscribers(user, list, options = {})
@param user [Integer, String, Twitter::User] A Twitter user ID, screen name, URI, or object. @param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param options [Hash] A customizable set of options.
# File lib/twitter/rest/lists.rb, line 120 def list_subscribers(*args) cursor_from_response_with_list(:get, '/1.1/lists/subscribers.json', args) end
Show tweet timeline for members of the specified list
@see dev.twitter.com/docs/api/1.1/get/lists/statuses @rate_limited Yes @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [Array<Twitter::Tweet>] @overload list_timeline(list, options = {})
@param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param options [Hash] A customizable set of options. @option options [Integer] :since_id Returns results with an ID greater than (that is, more recent than) the specified ID. @option options [Integer] :max_id Returns results with an ID less than (that is, older than) or equal to the specified ID. @option options [Integer] :count The number of results to retrieve.
@overload list_timeline(user, list, options = {})
@param user [Integer, String, Twitter::User] A Twitter user ID, screen name, URI, or object. @param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param options [Hash] A customizable set of options. @option options [Integer] :since_id Returns results with an ID greater than (that is, more recent than) the specified ID. @option options [Integer] :max_id Returns results with an ID less than (that is, older than) or equal to the specified ID. @option options [Integer] :count The number of results to retrieve.
# File lib/twitter/rest/lists.rb, line 58 def list_timeline(*args) arguments = Twitter::Arguments.new(args) merge_list!(arguments.options, arguments.pop) merge_owner!(arguments.options, arguments.pop) perform_with_objects(:get, '/1.1/lists/statuses.json', arguments.options, Twitter::Tweet) end
Unsubscribes the authenticated user form the specified list
@see dev.twitter.com/docs/api/1.1/post/lists/subscribers/destroy @rate_limited No @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [Twitter::List] The specified list. @overload list_unsubscribe(list, options = {})
@param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param options [Hash] A customizable set of options.
@overload list_unsubscribe(user, list, options = {})
@param user [Integer, String, Twitter::User] A Twitter user ID, screen name, URI, or object. @param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param options [Hash] A customizable set of options.
# File lib/twitter/rest/lists.rb, line 177 def list_unsubscribe(*args) list_from_response(:post, '/1.1/lists/subscribers/destroy.json', args) end
Updates the specified list
@see dev.twitter.com/docs/api/1.1/post/lists/update @rate_limited No @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [Twitter::List] The created list. @overload list_update(list, options = {})
@param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param options [Hash] A customizable set of options. @option options [String] :mode ('public') Whether your list is public or private. Values can be 'public' or 'private'. @option options [String] :description The description to give the list.
@overload list_update(user, list, options = {})
@param user [Integer, String, Twitter::User] A Twitter user ID, screen name, URI, or object. @param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param options [Hash] A customizable set of options. @option options [String] :mode ('public') Whether your list is public or private. Values can be 'public' or 'private'. @option options [String] :description The description to give the list.
# File lib/twitter/rest/lists.rb, line 301 def list_update(*args) list_from_response(:post, '/1.1/lists/update.json', args) end
Returns all lists the authenticating or specified user subscribes to, including their own
@see dev.twitter.com/docs/api/1.1/get/lists/list @rate_limited Yes @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [Array<Twitter::List>] @overload lists(options = {})
@param options [Hash] A customizable set of options. @option options [Boolean] :reverse Set this to true if you would like owned lists to be returned first.
@overload lists(user, options = {})
@param user [Integer, String, Twitter::User] A Twitter user ID, screen name, URI, or object. @param options [Hash] A customizable set of options. @option options [Boolean] :reverse Set this to true if you would like owned lists to be returned first.
# File lib/twitter/rest/lists.rb, line 33 def lists(*args) objects_from_response_with_user(Twitter::List, :get, '/1.1/lists/list.json', args) end
List the lists the specified user has been added to
@see dev.twitter.com/docs/api/1.1/get/lists/memberships @rate_limited Yes @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [Twitter::Cursor] @overload memberships(options = {})
@param options [Hash] A customizable set of options. @option options [Integer] :count The amount of results to return per page. Defaults to 20. No more than 1000 results will ever be returned in a single page. @option options [Boolean, String, Integer] :filter_to_owned_lists When set to true, t or 1, will return just lists the authenticating user owns, and the user represented by user_id or screen_name is a member of.
@overload memberships(user, options = {})
@param user [Integer, String, Twitter::User] A Twitter user ID, screen name, URI, or object. @param options [Hash] A customizable set of options. @option options [Integer] :count The amount of results to return per page. Defaults to 20. No more than 1000 results will ever be returned in a single page. @option options [Boolean, String, Integer] :filter_to_owned_lists When set to true, t or 1, will return just lists the authenticating user owns, and the user represented by user_id or screen_name is a member of.
# File lib/twitter/rest/lists.rb, line 102 def memberships(*args) cursor_from_response_with_user(:lists, Twitter::List, :get, '/1.1/lists/memberships.json', args) end
Returns the lists owned by the specified Twitter user
@see dev.twitter.com/docs/api/1.1/get/lists/ownerships @rate_limited Yes @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [Array<Twitter::List>] @overload owned_lists(options = {})
@param options [Hash] A customizable set of options. @option options [Integer] :count The amount of results to return per page. Defaults to 20. No more than 1000 results will ever be returned in a single page.
@overload owned_lists(user, options = {})
@param user [Integer, String, Twitter::User] A Twitter user ID, screen name, URI, or object. @param options [Hash] A customizable set of options. @option options [Integer] :count The amount of results to return per page. Defaults to 20. No more than 1000 results will ever be returned in a single page.
# File lib/twitter/rest/lists.rb, line 392 def owned_lists(*args) cursor_from_response_with_user(:lists, Twitter::List, :get, '/1.1/lists/ownerships.json', args) end
Removes the specified member from the list
@see dev.twitter.com/docs/api/1.1/post/lists/members/destroy @rate_limited No @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [Twitter::List] The list. @overload remove_list_member(list, user_to_remove, options = {})
@param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param user_to_remove [Integer, String] The user id or screen name of the list member to remove. @param options [Hash] A customizable set of options.
@overload remove_list_member(user, list, user_to_remove, options = {})
@param user [Integer, String, Twitter::User] A Twitter user ID, screen name, URI, or object. @param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param user_to_remove [Integer, String] The user id or screen name of the list member to remove. @param options [Hash] A customizable set of options.
# File lib/twitter/rest/lists.rb, line 81 def remove_list_member(*args) list_from_response_with_user(:post, '/1.1/lists/members/destroy.json', args) end
Removes specified members from the list
@see dev.twitter.com/docs/api/1.1/post/lists/members/destroy_all @rate_limited No @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [Twitter::List] The list. @overload remove_list_members(list, users, options = {})
@param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param users [Enumerable<Integer, String, Twitter::User>] A collection of Twitter user IDs, screen names, or objects. @param options [Hash] A customizable set of options.
@overload remove_list_members(user, list, users, options = {})
@param user [Integer, String, Twitter::User] A Twitter user ID, screen name, URI, or object. @param list [Integer, String, Twitter::List] A Twitter list ID, slug, URI, or object. @param users [Enumerable<Integer, String, Twitter::User>] A collection of Twitter user IDs, screen names, or objects. @param options [Hash] A customizable set of options.
# File lib/twitter/rest/lists.rb, line 373 def remove_list_members(*args) list_from_response_with_users(:post, '/1.1/lists/members/destroy_all.json', args) end
List the lists the specified user follows
@see dev.twitter.com/docs/api/1.1/get/lists/subscriptions @rate_limited Yes @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [Twitter::Cursor] @overload subscriptions(options = {})
@param options [Hash] A customizable set of options.
@overload subscriptions(user, options = {})
@param user [Integer, String, Twitter::User] A Twitter user ID, screen name, URI, or object. @param options [Hash] A customizable set of options.
# File lib/twitter/rest/lists.rb, line 353 def subscriptions(*args) cursor_from_response_with_user(:lists, Twitter::List, :get, '/1.1/lists/subscriptions.json', args) end
Generated with the Darkfish Rdoc Generator 2.