Included Modules

Class/Module Index [+]

Quicksearch

Twitter::REST::API::Undocumented

Public Instance Methods

following_followers_of(*args) click to toggle source

@note Undocumented @rate_limited Yes @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid.

@overload following_followers_of(options = {})

Returns users following followers of the specified user

@param options [Hash] A customizable set of options.
  @option options [Integer] :cursor (-1) Breaks the results into pages. Provide values as returned in the response objects's next_cursor and previous_cursor attributes to page back and forth in the list.
  @return [Twitter::Cursor]

@overload following_followers_of(user, options = {})

Returns users following followers of the authenticated user

@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] :cursor (-1) Breaks the results into pages. Provide values as returned in the response objects's next_cursor and previous_cursor attributes to page back and forth in the list.
  @return [Twitter::Cursor]
# File lib/twitter/rest/api/undocumented.rb, line 32
def following_followers_of(*args)
  cursor_from_response_with_user(:users, Twitter::User, :get, '/users/following_followers_of.json', args)
end
tweet_count(uri, options = {}) click to toggle source

Returns Tweets count for a URI

@note Undocumented @rate_limited No @authentication Not required @return [Integer] @param uri [String, URI] A URI. @param options [Hash] A customizable set of options.

# File lib/twitter/rest/api/undocumented.rb, line 44
def tweet_count(uri, options = {})
  connection = Faraday.new('https://cdn.api.twitter.com', connection_options.merge(:builder => middleware))
  connection.get('/1/urls/count.json', options.merge(:url => uri.to_s)).body[:count]
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.