Class: Platforms::Yammer::Api::Topics

Inherits:
Base
  • Object
show all
Defined in:
lib/platforms/yammer/api/topics.rb

Overview

Topics in Yammer

Since:

  • 0.1.0

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from Platforms::Yammer::Api::Base

Instance Method Details

#get(id, options = {}, headers = {}) ⇒ Faraday::Response

Get information about a topic (hashtag)

Parameters:

  • id (#to_s)

    The topic ID

  • options (Hash) (defaults to: {})

    Options for the request

  • headers (Hash) (defaults to: {})

    Additional headers to send with the request

Returns:

  • (Faraday::Response)

    the API response

See Also:

Since:

  • 0.1.0



15
16
17
# File 'lib/platforms/yammer/api/topics.rb', line 15

def get id, options={}, headers={}
  @connection.get "topics/#{id}.json", options, headers
end