Callback URL with a complex subpage (website.com/login/callback)

Hey all,

I have an OAuth application with my webpage where the redirect_url that I configured is www.mywebsite.com/login/callback. I cannot change this redirect_url. I cannot figure out how to create subpages in Bubble.io so I can reroute the OAuth callback to the rest of my application.

Anybody could give me some advice on how to accomplish this?

Thanks!

Create a page called ‘login’ and all requests to /login/callback will end up being routed there. You can then add a on page load event to check that the url contains /login/callback and then action whatever is required.

That is great! Thanks so much for this tip. Will try it out and lyk whether it works!