module OauthTwitter::API::Friends

Constants

PATH

Public Instance Methods

followers_ids(params={}, options={}) click to toggle source
# File lib/oauth_twitter/api/friends.rb, line 27
def followers_ids(params={}, options={})
  return send_request(:GET, PATH[:followers_ids], params, true, options)
end
followers_list(params={}, options={}) click to toggle source
# File lib/oauth_twitter/api/friends.rb, line 63
def followers_list(params={}, options={})
  return send_request(:GET, PATH[:followers_list], params, true, options)
end
friends_ids(params={}, options={}) click to toggle source
# File lib/oauth_twitter/api/friends.rb, line 23
def friends_ids(params={}, options={})
  return send_request(:GET, PATH[:friends_ids], params, true, options)
end
friends_list(params={}, options={}) click to toggle source
# File lib/oauth_twitter/api/friends.rb, line 59
def friends_list(params={}, options={})
  return send_request(:GET, PATH[:friends_list], params, true, options)
end
friendships_create(params={}, options={}) click to toggle source
# File lib/oauth_twitter/api/friends.rb, line 43
def friendships_create(params={}, options={})
  return send_request(:GET, PATH[:friendships_create], params, true, options)
end
friendships_destroy(params={}, options={}) click to toggle source
# File lib/oauth_twitter/api/friends.rb, line 47
def friendships_destroy(params={}, options={})
  return send_request(:GET, PATH[:friendships_destroy], params, true, options)
end
friendships_incoming(params={}, options={}) click to toggle source
# File lib/oauth_twitter/api/friends.rb, line 35
def friendships_incoming(params={}, options={})
  return send_request(:GET, PATH[:friendships_incoming], params, true, options)
end
friendships_lookup(params={}, options={}) click to toggle source
# File lib/oauth_twitter/api/friends.rb, line 31
def friendships_lookup(params={}, options={})
  return send_request(:GET, PATH[:friendships_lookup], params, true, options)
end
friendships_no_retweets_ids(params={}, options={}) click to toggle source
# File lib/oauth_twitter/api/friends.rb, line 19
def friendships_no_retweets_ids(params={}, options={})
  return send_request(:GET, PATH[:friendships_no_retweets_ids], params, true, options)
end
friendships_outgoing(params={}, options={}) click to toggle source
# File lib/oauth_twitter/api/friends.rb, line 39
def friendships_outgoing(params={}, options={})
  return send_request(:GET, PATH[:friendships_outgoing], params, true, options)
end
friendships_show(params={}, options={}) click to toggle source
# File lib/oauth_twitter/api/friends.rb, line 55
def friendships_show(params={}, options={})
  return send_request(:GET, PATH[:friendships_show], params, true, options)
end
friendships_update(params={}, options={}) click to toggle source
# File lib/oauth_twitter/api/friends.rb, line 51
def friendships_update(params={}, options={})
  return send_request(:GET, PATH[:friendships_update], params, true, options)
end