Hi all,
I’m using the meteor account package for google oauth and in a specific edge case login style popover is not allowed. I have to use redirect in this instance and the redirectUrl contains several query params like so:
localhost:3000/route?hello=true&world=true
After Google OAuth success the following url gets used:
localhost:3000/route?hello=true&world=true
The & character is encoded into $amp;. What’s a good way to get around it?