class Platforms::Yammer::Api::Topics

Topics in Yammer @author Benjamin Elias @since 0.1.0

Public Instance Methods

get(id, options={}) click to toggle source

Get information about a topic (hashtag) @param id [#to_s] The topic ID @param options [Hash] Options for the request @param headers [Hash] Additional headers to send with the request @return [Faraday::Response] the API response @see developer.yammer.com/docs/topicsidjson

# File lib/platforms/yammer/api/topics.rb, line 15
def get id, options={}, headers={}
  @connection.get "topics/#{id}.json", options, headers
end