big-night-72627
04/05/2025, 1:23 AMbrief-egg-61061
04/05/2025, 1:23 AMbrief-egg-61061
04/05/2025, 1:23 AMoryPasskeyLogin
. This function should be available when properly implementing passkey authentication in your application. The API documentation shows that Ory uses trigger functions for WebAuthn and passkey operations. These are referenced in the onclickTrigger
and onloadTrigger
attributes, which map to JavaScript functions provided by Ory: 'onclickTrigger': { 'description': 'OnClickTrigger may contain a WebAuthn trigger which should be executed on click. The trigger maps to a JavaScript function provided by Ory, which triggers actions such as PassKey registration or login. oryWebAuthnRegistration WebAuthnTriggersWebAuthnRegistration oryWebAuthnLogin WebAuthnTriggersWebAuthnLogin oryPasskeyLogin WebAuthnTriggersPasskeyLogin oryPasskeyLoginAutocompleteInit WebAuthnTriggersPasskeyLoginAutocompleteInit oryPasskeyRegistration WebAuthnTriggersPasskeyRegistration oryPasskeySettingsRegistration WebAuthnTriggersPasskeySettingsRegistration' }
The error you're experiencing likely indicates that the Ory JavaScript library that provides these functions hasn't been properly loaded or initialized in your application. To resolve this issue, you should: 1. Make sure you've included the necessary Ory JavaScript libraries in your application 2. Check that the libraries are loaded before you attempt to use the passkey functions 3. Verify that you're using the correct implementation according to the Ory documentation Unfortunately, the knowledge sources don't provide specific implementation details about how to properly include these JavaScript functions in your application. I would recommend checking the Ory documentation for WebAuthn/passkey implementation guides or contacting Ory support for more specific guidance on implementing passkey login correctly.