SPA Cookie
Last updated
Last updated
By default, the module provides configuration to integrate seamlessly with Laravel Sanctum authentication based on the XSRF token.
To explicitly set this authentication mode, update sanctum.mode
configuration property to cookie
.
You can check the official Laravel documentation here - .
Nuxt and Laravel applications must share the same top-level domain.
For instance:
Nuxt application - domain.com
Laravel application - api.domain.com
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.
Once the module has an authentication state, it will take care of requesting a CSRF cookie from the API and passing it as an XSRF header to each subsequent request as well as passing all other headers and cookies from CSR to SSR requests.
Your Laravel API should be configured properly to support Nuxt domain and share cookies:
You can also and add your information into headers or cookie collections.
To check other available methods, please refer to the section.
If you notice incorrect behavior of the module or authentication flow, feel free to !