Method: ACTV::Client#popular_events

Defined in:
lib/actv/client.rb

Returns popular assets that match a specified query.

Examples:

Returns articles related to running

ACTV.popular_events()
ACTV.popular_events("topic:running")

Parameters:

  • options (Hash)

    A customizable set of options.

Returns:



203
204
205
206
# File 'lib/actv/client.rb', line 203

def popular_events(params={})
  response = get("/v2/events/popular", params)
  ACTV::SearchResults.from_response(response)
end