class OAuth2::AccessToken

def request(verb, path, opts = {}, &block)

Other tags:
    See: Client#request -

Parameters:
  • opts (Hash) -- the options to make the request with
  • path (String) -- the HTTP URL path of the request
  • verb (Symbol) -- the HTTP request method
def request(verb, path, opts = {}, &block)
  configure_authentication!(opts)
  @client.request(verb, path, opts, &block)
end