Accepting organization invitation flow
Do you guys have any recommendations for using
better-auth
's organization invitation with users who haven't got an account / aren't signed in? I check on the frontend's page for accepting the invitation if there isn't a session, and if there isn't, I redirect them to the sign in page with the email already set and the input disabled
Then once they log in (e.g. with OTP), then I use the hook to check if the user is new, and if so, it accepts the invite automatically if there is one, and if they already had an account and are logging in, I want to redirect them to the invitation page again
Problem is, my backend and frontend are on separate domains so I'm getting CORS errors if I do the redirect6 Replies
For context, here is the code:
I guess I can do the same check on the frontend, but I'd like to do it all on the backend tbh
if they aren't signed in and the server returned 401 you should redirect them to the sign in page and once they are authenticated you should redirect them back to the page where they can accept the invitation.
Yes but how? I get CORS errors when doing a redirect
first you should be redirect from your spa to your spa to accept invitation and even if you need to redirect to your server endpoint there is no cors issues that is unique to redirecting.
Apparently there is because I’m getting one when doing the ctx.redirect in the above code. Not sure if there is a better way of knowing that they need to be redirected to the invitation page or doing it somewhere else than the hook
If you're using OTP login, it's better to keep the
from=
query in the SPA url so that after the user signs in, you can redirect them from the frontend instead. This way, you wouldn't need this hook. Ideally, before accepting the invitation, the user should be asked whether they want to accept it or not