CSRF Mismatch
I'm trying to setup connected login with Sanctum / Next.js
Currently This is my setup
{
"email": "[email protected]",
"password": "password"
}
Response:
3 Replies
Note im trying to send the requests from bruno, im trying to figure out why exactly am i facing this problem
That's because the is a CSRF token mismatch. You likely haven't provided a CSRF token in the login request with nextJs.
See the last post here:
https://stackoverflow.com/questions/74170224/how-to-get-laravel-csrf-value-in-nextjs
Stack Overflow
How to get Laravel CSRF value in NEXTJS
I have a Next JS frontend and Laravel 9 as backend. Created APIs and tested them on the postman. All of the API's working fine without any issues.
The Problem
So I have created a Nextjs file with a...