Is it possible to require user providing extra info after an OAuth signup?
What I want to achieve: When the user choose OAuth (with genericOAuth plugin) for authentication, check whether this oauth method has been used before. If it's used, sign the user in. And if not, redirect the user to a "sign up" page to require him to link their existing account or provide more information (such as an invitation code) to set up the account.
(I see there're the
(I see there're the
disableImplicitSignUp, requestSignUp and newUserCallbackURL options seem can support my needs. But I don't know how to achieve that. I also doubt whether the user can be redirected to the newUserCallbackURL when requestSignUp is false. )