I'm using Auth0 for authentication with Symfony2 and HWIOAuthBundle.
Our app does the following:
- Send invitation link to new user
- User ckicks the link and lands a form where they new fill-in email and password
- Once the form is submitted and validated we create that user in Auth0 with all necessary metadata
- User is redirected to getting started tour
The problem is in #4. How do I get that users logged into the Symfony app now? With Auth0 I can call https://muapp.auth0.com/oauth/ro API endpoint and it will return access_token and id_token, but how do I use those to trigger e.g OAuth flow so I can get that user properly authenticated with Auth0 and my app.