Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions library/java/net/openid/appauth/AuthorizationRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,17 @@ public static final class Prompt {
* <https://openid.net/specs/openid-connect-core-1_0.html#rfc.section.3.1.2.6>"
*/
public static final String SELECT_ACCOUNT = "select_account";

/**
* A value of create indicates to the OpenID Provider that the client desires that the user
* be shown the account creation UX rather than the login flow. Care must be taken if
* combining this value with other prompt values. Mutually exclusive conditions can
* arise so it is RECOMMENDED that create not be combined with any other values.
*
* @see "Initiating User Registration via OpenID Connect 1.0
* <https://openid.net/specs/openid-connect-prompt-create-1_0-final.html>"
*/
public static final String CREATE = "create";
}

/**
Expand Down