Sha256: 40f8113e37c74ceeb27b2f3492275d99da39b6a3b2562fa159a3df0300ee2771

Contents?: true

Size: 1.29 KB

Versions: 6

Compression:

Stored size: 1.29 KB

Contents

class Twitter::Client
  @@GRAPH_URIS = {
    :friends => '/friends/ids',
    :followers => '/followers/ids',
  }
	
  # Provides access to the Twitter Social Graphing API.
  # 
  # You can retrieve the full graph of a user's friends or followers in one method call.
  # 
  # <tt>action</tt> can be any of the following values:
  # * <tt>:friends</tt> - retrieves ids of all friends of a given user.
  # * <tt>:followers</tt> - retrieves ids of all followers of a given user.
  # 
  # The <tt>value</tt> must be either the user screen name, integer unique user ID or Twitter::User 
  # object representation.
  # 
  # Examples:
  #  screen_name = 'dictionary'
  #  client.graph(:friends, 'dictionary')
  #  client.graph(:followers, 'dictionary')
  #  id = 1260061
  #  client.graph(:friends, id)
  #  client.graph(:followers, id)
  #  user = Twitter::User.find(id, client)
  #  client.graph(:friends, user)
  #  client.graph(:followers, user)
  def graph(action, value = nil)
    raise ArgumentError, "Invalid friend action provided: #{action}" unless @@GRAPH_URIS.keys.member?(action)
    id = value.to_i unless value.nil? || value.is_a?(String)
    id ||= value
    id ||= @login
    uri = "#{@@GRAPH_URIS[action]}.json"
    response = rest_oauth_connect(:get, uri, :id => id)
    JSON.parse(response.body)
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
twitter4r-0.7.0 lib/twitter/client/graph.rb
twitter4r-0.6.0 lib/twitter/client/graph.rb
twitter4r-0.5.3 lib/twitter/client/graph.rb
twitter4r-0.5.2 lib/twitter/client/graph.rb
twitter4r-0.5.1 lib/twitter/client/graph.rb
twitter4r-0.5.0 lib/twitter/client/graph.rb