arth
arth
Explore posts from servers
BABetter Auth
Created by Ahmed on 3/6/2025 in #bug-reports
getSessionCookie() return null is some cases
22 replies
BABetter Auth
Created by Ahmed on 3/6/2025 in #bug-reports
getSessionCookie() return null is some cases
this works
22 replies
BABetter Auth
Created by Ahmed on 3/6/2025 in #bug-reports
getSessionCookie() return null is some cases
I was trying to use getSessionCookie just now with my middleware and i kept getting null. so i replaced it with this:
export async function getSessionCookie(request: NextRequest, config?: { cookieName: string, cookiePrefix: string, path: string }) {
// implement middleware logic
const cookieStore = await import("next/headers").then(mod => mod.cookies());
return cookieStore.get(`${config?.cookiePrefix || "ft-auth"}.${config?.cookieName || "session_token"}`);
}
export async function getSessionCookie(request: NextRequest, config?: { cookieName: string, cookiePrefix: string, path: string }) {
// implement middleware logic
const cookieStore = await import("next/headers").then(mod => mod.cookies());
return cookieStore.get(`${config?.cookiePrefix || "ft-auth"}.${config?.cookieName || "session_token"}`);
}
22 replies