admin login loop. not able to access admin backend #47461
Replies: 3 comments 14 replies
-
|
Is the admin page the Supabase Dashboard? Try a different browser/VPN/device. |
Beta Was this translation helpful? Give feedback.
-
|
A login loop after OAuth almost always means the session isn't being persisted after the redirect. If you're using // app/auth/callback/route.ts
const { searchParams } = new URL(request.url)
const code = searchParams.get('code')
if (code) await supabase.auth.exchangeCodeForSession(code)Also check:
If the loop is on the Supabase dashboard itself (not your own app), it's usually browser-side: try incognito, disable extensions, and allow cookies for supabase.com. |
Beta Was this translation helpful? Give feedback.
-
|
Understand, AI agent sometimes answer questions a kind like in parallel world though. Is this issue related to manual login to supabase dashboard, or is it a login simulation from code programatically for testing or whatever purpose? If you are talking about login problem via https://supabase.com/dashboard/org/slug for below dashboard:
If it's the manual login problem, may I trouble you to add more details in the question like: OS, browser, the cloud supabase or self-hosted supabase, supabase plan, and things you've tried (such as Incognito, other browsers ...) etc. |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
-
Having trouble fixing the admin login loop. when i try to log on to the admin page, it just loops back to the same page after pressing continue with gmail and entered password
Beta Was this translation helpful? Give feedback.
All reactions