module Ruby::Identitas::Endpoints::TokenStatus

Public Instance Methods

token_status(options = {}) click to toggle source
# File lib/ruby/identitas/endpoints/token_status.rb, line 5
def token_status(options = {})
  options.merge!({access_token: @token})
  endpoint = build_endpoint("/v1/token_status")
  self.class.get(endpoint, query: options)
end