Skip to main content

Documentation Index

Fetch the complete documentation index at: https://auth0.com/llms.txt

Use this file to discover all available pages before exploring further.

A string union type that classifies errors managed by useErrors. Used to filter errors with errors.byType() and present in each ErrorItem as the kind property.
type ErrorType = "auth0" | "validation" | "configuration";

Values

"auth0"
ErrorType
Errors returned by Auth0 or your own backend during authentication or authorization.
"validation"
ErrorType
Errors from client-side form validation, such as invalid input before a request is made.
"configuration"
ErrorType
Errors caused by incorrect SDK integration or misconfiguration, such as calling a hook outside of its required context. Only surfaced when includeDevErrors: true is set in UseErrorOptions.