Class: KeycloakSdk::AuthorizationRequest

Inherits:
Data
  • Object
show all
Defined in:
lib/keycloak_sdk/tokens.rb

Overview

authorization-code 흐름 시작 값(PKCE code_verifier 포함·inspect 마스킹).

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#code_verifierObject (readonly)

Returns the value of attribute code_verifier

Returns:

  • (Object)

    the current value of code_verifier



50
51
52
# File 'lib/keycloak_sdk/tokens.rb', line 50

def code_verifier
  @code_verifier
end

#stateObject (readonly)

Returns the value of attribute state

Returns:

  • (Object)

    the current value of state



50
51
52
# File 'lib/keycloak_sdk/tokens.rb', line 50

def state
  @state
end

#urlObject (readonly)

Returns the value of attribute url

Returns:

  • (Object)

    the current value of url



50
51
52
# File 'lib/keycloak_sdk/tokens.rb', line 50

def url
  @url
end

Instance Method Details

#inspectObject Also known as: to_s



51
52
53
# File 'lib/keycloak_sdk/tokens.rb', line 51

def inspect
  "#<KeycloakSdk::AuthorizationRequest url=#{url.inspect} state=#{state.inspect} code_verifier=\"***\">"
end