Module Twitter::REST::Trends
In: lib/twitter/rest/trends.rb

Methods

Included Modules

Twitter::REST::Utils

Public Instance methods

local_trends(id = 1, options = {})

Alias for trends

trend_locations(options = {})

Alias for trends_available

Returns the top 50 trending topics for a specific WOEID

@see dev.twitter.com/rest/reference/get/trends/place @rate_limited Yes @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @param id [Integer] The {developer.yahoo.com/geo/geoplanet Yahoo! Where On Earth ID} of the location to return trending information for. WOEIDs can be retrieved by calling {Twitter::REST::Trends#trends_available}. Global information is available by using 1 as the WOEID. @param options [Hash] A customizable set of options. @option options [String] :exclude Setting this equal to ‘hashtags’ will remove all hashtags from the trends list. @return [Array<Twitter::Trend>]

Returns the locations that Twitter has trending topic information for

@see dev.twitter.com/rest/reference/get/trends/available @rate_limited Yes @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @param options [Hash] A customizable set of options. @return [Array<Twitter::Place>]

Returns the locations that Twitter has trending topic information for, closest to a specified location.

@see dev.twitter.com/rest/reference/get/trends/closest @rate_limited Yes @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @param options [Hash] A customizable set of options. @option options [Float] :lat If provided with a :long option the available trend locations will be sorted by distance, nearest to furthest, to the co-ordinate pair. The valid ranges for latitude are -90.0 to +90.0 (North is positive) inclusive. @option options [Float] :long If provided with a :lat option the available trend locations will be sorted by distance, nearest to furthest, to the co-ordinate pair. The valid ranges for longitude are -180.0 to +180.0 (East is positive) inclusive. @return [Array<Twitter::Place>]

trends_place(id = 1, options = {})

Alias for trends

[Validate]