I'm building an application with a Next.js frontend and Laravel backend using Sanctum for SPA authentication. When I login from the Next.js app, I can see the authentication cookies being set in the browser, but subsequent requests to get user information return "unauthenticated" errors. NOTE: Everything is working in Postman correctly.
The login process works fine, and I can confirm cookies are set in the browser after login. However, when I try to fetch the authenticated user information, I get "unauthorized" errors. I tried GET request at "/api/v1/user" in Postman and it works.
const baseUrl = process.env.NEXT_PUBLIC_BASE_URL;
async function fetchCsrfCookie() {
await fetch(`${process.env.NEXT_PUBLIC_BASE_URL}/sanctum/csrf-cookie`, {
method: 'GET',
credentials: 'include',
});
}
export const fetchSignIn = async (username: string, password: string) => {
// 1) Init Sanctum
await fetchCsrfCookie();
// 2) Login
const res = await fetch(`${baseUrl}/api/v1/login`, {
method: 'POST',
credentials: 'include',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ username, password, remember: true }),
});
if (!res.ok) {
throw new Error('Login failed');
}
return res.json();
};
export const fetchAuthUser = async () => {
try {
const res = await fetch(`${process.env.NEXT_PUBLIC_BASE_URL}/api/v1/user`, {
method: 'GET',
credentials: 'include',
headers: {
'Content-Type': 'application/json',
},
});
if (!res.ok) {
const errorData: any = await res.json();
console.error('Error data:', errorData);
throw new Error(errorData.message || res.statusText);
}
return res.json();
} catch (error) {
console.error(`Failed to fetch resource:`, error);
throw error;
}
};
I figured out the issue! The problem was in SANCTUM_STATEFUL_DOMAINS="localhost:3000"
. When I run backend it takes 3000 port and my NEXT server is running at different port(3002) in my case. I updated .env to 3002 port and it worked.