CreatePublicKeyCredentialRequest
public final class CreatePublicKeyCredentialRequest extends CreateCredentialRequest
| java.lang.Object | ||
| ↳ | androidx.credentials.CreateCredentialRequest | |
| ↳ | androidx.credentials.CreatePublicKeyCredentialRequest |
A request to register a passkey from the user's public key credential provider.
Summary
Public constructors |
|---|
CreatePublicKeyCredentialRequest(Constructs a |
CreatePublicKeyCredentialRequest(Constructs a |
Public methods |
|
|---|---|
final byte[] |
a clientDataHash value to sign over in place of assembling and hashing clientDataJSON during the signature request; only meaningful when |
final @NonNull String |
the request in JSON format in the standard webauthn web json. |
final boolean |
whether the public key should be created opportunistically based on the user's credential provider already possessing a password for the same account and/or other provider specific conditions, and also based on internal system conditions. |
Inherited methods |
||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Public constructors
CreatePublicKeyCredentialRequest
public CreatePublicKeyCredentialRequest(
@NonNull String requestJson,
byte[] clientDataHash,
boolean preferImmediatelyAvailableCredentials,
String origin,
boolean isAutoSelectAllowed,
boolean isConditional
)
Constructs a CreatePublicKeyCredentialRequest to register a passkey from the user's public key credential provider.
| Parameters | |
|---|---|
@NonNull String requestJson |
the privileged request in JSON format in the standard webauthn web json. |
byte[] clientDataHash |
a hash that is used to verify the relying party identity |
boolean preferImmediatelyAvailableCredentials |
true if you prefer the operation to return immediately when there is no available passkey registration offering instead of falling back to discovering remote options, and false (default) otherwise |
String origin |
the origin of a different application if the request is being made on behalf of that application (Note: for API level >=34, setting a non-null value for this parameter will throw a SecurityException if android.permission.CREDENTIAL_MANAGER_SET_ORIGIN is not present) |
boolean isAutoSelectAllowed |
whether a create option will be automatically chosen if it is the only one available to the user (note that there is a chance that the crendeiatl provider does not support auto-select even if you turn this bit on) |
boolean isConditional |
whether the public key credential should be created opportunistically based on the user's credential provider already possessing a password for the same account, and also based on internal system conditions, as well as conditions from the user's preferred credential provider, keeping in mind that this should be ideally set to true when making a request immediately after a successful, non-public-key sign-in or sign-up process (e.g. sign-in using a password) |
| Throws | |
|---|---|
NullPointerException |
If |
IllegalArgumentException |
If |
CreatePublicKeyCredentialRequest
public CreatePublicKeyCredentialRequest(
@NonNull String requestJson,
byte[] clientDataHash,
boolean preferImmediatelyAvailableCredentials,
String origin,
String preferDefaultProvider,
boolean isAutoSelectAllowed
)
Constructs a CreatePublicKeyCredentialRequest to register a passkey from the user's public key credential provider.
| Parameters | |
|---|---|
@NonNull String requestJson |
the privileged request in JSON format in the standard webauthn web json. |
byte[] clientDataHash |
a hash that is used to verify the relying party identity |
boolean preferImmediatelyAvailableCredentials |
true if you prefer the operation to return immediately when there is no available passkey registration offering instead of falling back to discovering remote options, and false (preferably) otherwise |
String origin |
the origin of a different application if the request is being made on behalf of that application (Note: for API level >=34, setting a non-null value for this parameter will throw a SecurityException if android.permission.CREDENTIAL_MANAGER_SET_ORIGIN is not present) |
String preferDefaultProvider |
the preferred default provider component name to prioritize in the selection UI flows (Note: tour app must have the permission android.permission.CREDENTIAL_MANAGER_SET_ALLOWED_PROVIDERS to specify this, or it would not take effect; also this bit may not take effect for Android API level 33 and below, depending on the pre-34 provider(s) you have chosen) |
boolean isAutoSelectAllowed |
whether a create option will be automatically chosen if it is the only one available to the user (note that there is a chance that the credential provider does not support auto-select even if you turn this bit on) |
| Throws | |
|---|---|
NullPointerException |
If |
IllegalArgumentException |
If |
Public methods
getClientDataHash
public final byte[] getClientDataHash()
a clientDataHash value to sign over in place of assembling and hashing clientDataJSON during the signature request; only meaningful when origin is set
getRequestJson
public final @NonNull String getRequestJson()
the request in JSON format in the standard webauthn web json.
isConditional
public final boolean isConditional()
whether the public key should be created opportunistically based on the user's credential provider already possessing a password for the same account and/or other provider specific conditions, and also based on internal system conditions. When set to true, it is important to note that no dialog like system UI is shown to the user, and instead the credential provider is to show a notification to the user when passkey creation is successful. Ideal scenarios to set this to true are when making a request immediately after a successful, non-passkey sign-in (e.g. sign-in using a password), or an independent sign-up process