Module: Twitter

Defined in:
lib/twitter.rb,
lib/twitter/base.rb,
lib/twitter/oauth.rb,
lib/twitter/search.rb,
lib/twitter/request.rb,
lib/twitter/httpauth.rb

Defined Under Namespace

Classes: Base, General, HTTPAuth, InformTwitter, NotFound, OAuth, RateLimitExceeded, Request, Search, TwitterError, Unauthorized, Unavailable

Class Method Summary collapse

Class Method Details

.firehoseObject



35
36
37
38
# File 'lib/twitter.rb', line 35

def self.firehose
  response = HTTParty.get('http://twitter.com/statuses/public_timeline.json', :format => :json)
  response.map { |tweet| Mash.new(tweet) }
end

.follower_ids(id) ⇒ Object



54
55
56
# File 'lib/twitter.rb', line 54

def self.follower_ids(id)
  HTTParty.get("http://twitter.com/followers/ids/#{id}.json", :format => :json)
end

.friend_ids(id) ⇒ Object



50
51
52
# File 'lib/twitter.rb', line 50

def self.friend_ids(id)
  HTTParty.get("http://twitter.com/friends/ids/#{id}.json", :format => :json)
end

.status(id) ⇒ Object



45
46
47
48
# File 'lib/twitter.rb', line 45

def self.status(id)
  response = HTTParty.get("http://twitter.com/statuses/show/#{id}.json", :format => :json)
  Mash.new(response)
end

.user(id) ⇒ Object



40
41
42
43
# File 'lib/twitter.rb', line 40

def self.user(id)
  response = HTTParty.get("http://twitter.com/users/show/#{id}.json", :format => :json)
  Mash.new(response)
end