The Relying Party
aka the application you are interacting with
<?php
use Webauthn\PublicKeyCredentialRpEntity;
$rpEntity = new PublicKeyCredentialRpEntity(
'ACME Webauthn Server' // The application name
);Relying Party ID
<?php
use Webauthn\PublicKeyCredentialRpEntity;
$rpEntity = new PublicKeyCredentialRpEntity(
'ACME Webauthn Server', // The application name
'acme.com' // The application ID = the domain
);How to determine the Relying Party ID?
Relying Party Icon
Last updated
Was this helpful?