Class: KeycloakSdk::AuthorizationRequest
- Inherits:
-
Data
- Object
- Data
- KeycloakSdk::AuthorizationRequest
- Defined in:
- lib/keycloak_sdk/tokens.rb
Overview
authorization-code 흐름 시작 값(PKCE code_verifier 포함·inspect 마스킹).
Instance Attribute Summary collapse
-
#code_verifier ⇒ Object
readonly
Returns the value of attribute code_verifier.
-
#state ⇒ Object
readonly
Returns the value of attribute state.
-
#url ⇒ Object
readonly
Returns the value of attribute url.
Instance Method Summary collapse
- #inspect ⇒ Object (also: #to_s)
Instance Attribute Details
#code_verifier ⇒ Object (readonly)
Returns the value of attribute code_verifier
50 51 52 |
# File 'lib/keycloak_sdk/tokens.rb', line 50 def code_verifier @code_verifier end |
#state ⇒ Object (readonly)
Returns the value of attribute state
50 51 52 |
# File 'lib/keycloak_sdk/tokens.rb', line 50 def state @state end |
#url ⇒ Object (readonly)
Returns the value of attribute url
50 51 52 |
# File 'lib/keycloak_sdk/tokens.rb', line 50 def url @url end |
Instance Method Details
#inspect ⇒ Object 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 |