User login authentification with social media

The problem I am facing is sometimes users will Login to my app using the social media API workflows despite not having made an account before.

Because the workflow signup/login with a social network will automatically register someone on the app, I need a have a condition that checks if they haven’t registered already, and if they haven’t, redirect them to my onboarding process.

The difficulty arises when checking if the user hasn’t registered already with social networks.

Any help would be greatly appreciated.

You can set up a field for type User called “onboardingcomplete” with a type yes/no (default: no).
Then check if onboardingcomplete=no then always redirect to onboarding page.

Update this field to yes after onboarding is complete.

1 Like

Thank you!

This topic was automatically closed after 70 days. New replies are no longer allowed.