How do I match specific users to specific call back URLs?

I have specific users and I have specific call back URLs. The goal is to have a user routed to a page after authentication based on that users ID or information.

I am having the same issue. I have tried user specific rules, creating groups and editing user information and can find a way to connect users to specific pages (call back URLs) I have the same question: I have specific users and I have specific call back URLs. How do I match specific users to specific call back URLs? The goal is to have a user routed to a page after authentication based on that users ID or information. How do I accomplish this goal? Is there another way for me to have a User connected with a user specific account page? Please let me know if this is possible through Auth0.

Callback URLs allow query string parameters to be passed; the easiest way to achieve your requirements is to set the Callback URL to your application origin (e.g. https://myapp.com/app, and pass a query string parameter with the URL you would like to return to. E.g.

https://myapp.com/app?returnTo=http://myapp.com/user-specific-path

Your application can then parse the returnTo parameter and perform a redirect.

1 Like