-
Notifications
You must be signed in to change notification settings - Fork 938
config properties webauthn properties relying_party
v1.3.1
object
(relying_party)
Property | Type | Required | Nullable | Defined by |
---|---|---|---|---|
display_name | string |
Optional | cannot be null | Config |
id | string |
Optional | cannot be null | Config |
origins | array |
Optional | cannot be null | Config |
display_name
is the service's name that some WebAuthn Authenticators will display to the user during registration
and authentication ceremonies.
display_name
-
is optional
-
cannot be null
string
The default value is:
"Hanko Authentication Service"
id
is the effective domain
the passkey/WebAuthn credentials will be bound to.
id
-
is optional
-
cannot be null
string
The default value is:
"localhost"
origins
is a list of origins for which passkeys/WebAuthn credentials will be accepted by the server. Must
include the protocol and can only be the effective domain, or a registrable domain suffix of the effective
domain, as specified in the id
. Except for localhost
, the protocol must always be https
for
passkeys/WebAuthn to work. IP Addresses will not work.
For an Android application the origin must be the base64 url encoded SHA256 fingerprint of the signing certificate.
origins
-
is optional
-
cannot be null
string[]
minimum number of items: the minimum number of items for this array is: 1
The default value is:
[
"http://localhost:8888"
]