class Rack::OAuth2::Server::Authorize::Token::Response

Public Instance Methods

protocol_params() click to toggle source
# File lib/rack/oauth2/server/authorize/token.rb, line 27
def protocol_params
  super.merge(
    access_token.token_response.delete_if do |k, v|
      k == :refresh_token
    end
  )
end
protocol_params_location() click to toggle source
# File lib/rack/oauth2/server/authorize/token.rb, line 35
def protocol_params_location
  :fragment
end