prompt property
- @JsonKey(name: OidcConstants_AuthParameters.prompt, toJson: OidcInternalUtilities.joinSpaceDelimitedList)
getter/setter pair
OPTIONAL.
Space delimited, case sensitive list of ASCII string values that specifies whether the Authorization Server prompts the End-User for re-authentication and consent.
The defined values are in OidcConstants_AuthorizeRequest_Prompt
The prompt parameter can be used by the Client to make sure that the End-User is still present for the current session or to bring attention to the request.
If this parameter contains none with any other value, an error is returned.
Implementation
@JsonKey(
name: OidcConstants_AuthParameters.prompt,
toJson: OidcInternalUtilities.joinSpaceDelimitedList,
)
List<String>? prompt;