Post User Registration Hook not called after Google OAuth Sign-Up

I have a custom hook that runs successfully when a user signs up using the email, username, and password but it does not run when a user signs up using google-oauth2 connection type. My custom hook basically calls another API and passes some of the user’s sign up data. I set up my client id and client secret with google-oauth2 so I’m not using development keys. Is there something i can configure so that the post registration hook will run whether a user sign up using email/username/password and the Oauth2 sign-up?

Pre/Post-User-Reg-Hooks are only triggered for database connections, not social connections. You should use a Rule instead and check if it’s the first login of that user (context.stats.loginsCount), then call that other API from within the Rule.

4 Likes

That worked. Thank you.

2 Likes

Glad you have it working now!

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.