Method: Twitter::Client#timeline_for
- Defined in:
- lib/vendor/twitter/lib/twitter/client/timeline.rb
#timeline_for(type, options = {}, &block) ⇒ Object
Provides access to Twitter’s Timeline APIs
Returns timeline for given type.
type can take the following values:
-
public -
friendsorfriend -
userorme
:id is on key applicable to be defined in </tt>options</tt>:
-
the id or screen name (aka login) for :friends
-
the id or screen name (aka login) for :user
-
meaningless for the :me case, since
twitter.timeline_for(:user, 'mylogin')andtwitter.timeline_for(:me)are the same assuming ‘mylogin’ is the authenticated user’s screen name (aka login).
Examples:
# returns the public statuses since status with id of 6543210
twitter.timeline_for(:public, id => 6543210)
# returns the statuses for friend with user id 43210
twitter.timeline_for(:friend, :id => 43210)
# returns the statuses for friend with screen name (aka login) of 'otherlogin'
twitter.timeline_for(:friend, :id => 'otherlogin')
# returns the statuses for user with screen name (aka login) of 'otherlogin'
twitter.timeline_for(:user, :id => 'otherlogin')
options can also include the following keys:
-
:idis the user ID, screen name of Twitter::User representation of aTwitteruser. -
:sinceis a Time object specifying the date-time from which to return results for. Applicable for the :friend, :friends, :user and :me cases. -
:countspecifies the number of statuses to retrieve. Only applicable for the :user case. -
since_idis the status id of the public timeline from which to retrieve statuses for:public. Only applicable for the :public case.
You can also pass this method a block, which will iterate through the results of the requested timeline and apply the block logic for each status returned.
Example:
twitter.timeline_for(:public) do |status|
puts status.user.screen_name, status.text
end
twitter.timeline_for(:friend, :id => 'myfriend', :since => 30.minutes.ago) do |status|
puts status.user.screen_name, status.text
end
timeline = twitter.timeline_for(:me) do |status|
puts status.text
end
An ArgumentError will be raised if an invalid type is given. Valid types are:
-
:public -
:friends -
:friend -
:user -
:me
64 65 66 67 68 69 70 71 |
# File 'lib/vendor/twitter/lib/twitter/client/timeline.rb', line 64 def timeline_for(type, = {}, &block) raise ArgumentError, "Invalid timeline type: #{type}" unless @@TIMELINE_URIS.keys.member?(type) uri = @@TIMELINE_URIS[type] response = http_connect {|conn| create_http_get_request(uri, ) } timeline = Twitter::Status.unmarshal(response.body) timeline.each {|status| bless_model(status); yield status if block_given? } timeline end |