module Totter::Client::Configuration

Client methods for working with configuration.

Public Instance Methods

configuration() click to toggle source

Get the configuration from the API.

@return [Hashie::Mash] A hash of configuration data. @example

Totter.configuration
# File lib/totter/client/configuration.rb, line 10
def configuration
  get('configuration').body
end
explore() click to toggle source

Get the featured timelines and users for Explore.

@return [Hashie::Mash] A hash of timelines and users data. @example

Totter.explore
# File lib/totter/client/configuration.rb, line 19
def explore
  get('explore').body
end