Module Twitter::Client::Activity
In: lib/twitter/client/activity.rb

Defines methods related to URLs

Methods

Public Instance methods

Returns activity about me

@note Undocumented @rate_limited Yes @requires_authentication Yes @param options [Hash] A customizable set of options. @option options [Integer] :count Specifies the number of records to retrieve. Must be less than or equal to 100. @option options [Boolean, String, Integer] :include_entities Include {dev.twitter.com/pages/tweet_entities Tweet Entities} when set to true, ‘t’ or 1. @option options [Integer] :since_id Returns results with an ID greater than (that is, more recent than) the specified ID. @return [Array] An array of actions @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @example Return activity about me

  Twitter.activity_about_me

Returns activity by friends

@note Undocumented @rate_limited Yes @requires_authentication Yes @param options [Hash] A customizable set of options. @option options [Integer] :count Specifies the number of records to retrieve. Must be less than or equal to 100. @option options [Boolean, String, Integer] :include_entities Include {dev.twitter.com/pages/tweet_entities Tweet Entities} when set to true, ‘t’ or 1. @option options [Integer] :since_id Returns results with an ID greater than (that is, more recent than) the specified ID. @return [Array] An array of actions @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid./ @example Return activity by friends

  Twitter.activity_by_friends

[Validate]