/oauth2callback?code=4/SOMECODE.LOL-ISHERE
Hello there the above url is sent from an OAUTH request generated by the googleapis package in node.js.
I have tried so many routes but it never matches.
app.get('/oauth2callback?code=4/:token', routes.oauth);
app.get('/oauth2callback*/:token', routes.oauth);
app.get('/oauth2callback/:token', routes.oauth);
Any advice?