Class: OxfordDictionary::Endpoints::Thesaurus

Inherits:
Endpoint
  • Object
show all
Defined in:
lib/oxford_dictionary/endpoints/thesaurus.rb

Constant Summary collapse

ENDPOINT =
'thesaurus'.freeze

Instance Method Summary collapse

Methods inherited from Endpoint

#initialize

Constructor Details

This class inherits a constructor from OxfordDictionary::Endpoints::Endpoint

Instance Method Details

#thesaurus(word:, language:, params: {}) ⇒ Object



8
9
10
11
12
13
14
# File 'lib/oxford_dictionary/endpoints/thesaurus.rb', line 8

def thesaurus(word:, language:, params: {})
  path = "#{ENDPOINT}/#{language}/#{word}"
  uri = request_uri(path: path, params: params)

  response = @request_client.get(uri: uri)
  deserialize.call(response.body)
end