Invitation link Error
Hi there, any idea how to fix this?
This is my config and when receiving a invite link I'm getting this error
{"error":"requested path is invalid"}

4 Replies
@prgman make sure the Site URL exactly matches the domain in your invite link (including https:// and trailing slash if present). Also, add the same URL to the Redirect URLs list so the invite link is considered valid by Supabase Auth.
https://vorbcsmxxxxxx.supabase.co/auth/v1/verify?token=MYTOKEN&type=invite&redirect_to=https://vorbcsmxxxxxx.supabase.co
here an exaple
Is there something wrong?
@prgman your redirect to URL in the invite link is pointing back to your Supabase project domain, but usually it should point to your frontend app’s URL (where you handle the invitation confirmation).
Update the invite link so that redirect_to matches one of the URLs listed in your Supabase Auth → Redirect URLs, for example:
redirect to=https://your-frontend-domain.com
also make sure both Site URL and Redirect URLs in Supabase Auth settings exactly match your intended frontend domain, including https:// and no extra slashes."
Got it, thanks @OakRatos