Cross Origin Authentication
Default behavior
Customizing Allowed Origins
Allowing Multiple Origins
<?php
declare(strict_types=1);
use Webauthn\CeremonyStep\CeremonyStepManagerFactory;
$csmFactory = new CeremonyStepManagerFactory();
$csmFactory->setAllowedOrigins([
'https://acme.com',
'https://acme.fr',
'https://acme.de',
'https://old-acme.com'
]);Allowing Subdomains
Supporting Native Applications
Enabling http://localhost for Development
http://localhost for DevelopmentSecurity Considerations
Last updated
Was this helpful?