Hello,
I have a registration flow on a web app that works like this:
-
unregistered prospect completes a form. the data in this form qualifies the prospect but will also be used for onboarding, and is stored in page data
-
prospect creates an account to begin the onboarding process
-
related records are created in several database tables using the data that is stored in page data
The problem I have is that oauth with Google takes the user away and returns them to the page. This loses the page data and I can’t add the required data to the database records.
Is there a way to address this? I thought about setting local storage data, but would that have problems with some browser privacy settings?