API Token
Last updated
Last updated
Token-based authentication is not recommended for SPA applications. Still, it might be useful when you cannot host it on the same TLD or have a mobile or desktop application built with Nuxt (e.g. based on Capacitor).
To explicitly set this authentication mode, update sanctum.mode
configuration property to token
.
You can check the official Laravel documentation here - .
First, you need to authenticate a user by submitting credentials to endpoints.login
endpoint:
The client will be automatically redirected to redirect.onLogin
route of your application.
To check other available methods, please refer to the section.
The module expects a plain token value in the response from the API that can be stored in cookies to be included in all subsequent requests as Authorization
header.
You can also implement if cookies are not supported, for example - Capacitor, Ionic, LocalStorage, etc.
Your API should have at least two endpoints for login and logout which are included in api.php
routes, so make sure that you do not use the same endpoints as for cookie-based authentication (web.php
routes) to avoid CSRF token mismatch errors.
Keep in mind, that the domain where API requests are coming from should not be included in SANCTUM_STATEFUL_DOMAINS
variable, otherwise you will get a CSRF mismatch error.
The login endpoint must return a JSON response that contains token
key like this
Default token storage uses cookies to keep the API Authentication token and automatically load it for both CSR and SSR requests. However, you are free to define custom storage in your app.config.ts
by implementing an interface.
Here you can find an example from official documentation - .
The logout endpoint should revoke the current client token to avoid inconsistencies with your Nuxt application state, please check official documentation - .
You can also try our API template with the already implemented authentication logic for both cookie and token approach - .
Check this section for more details - .