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"}
No description
4 Replies
OakRatos
OakRatos2w ago
@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.
OakRatos
OakRatos2w ago
@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."
prgman
prgmanOP2w ago
Got it, thanks @OakRatos

Did you find this page helpful?