I am using express with node.js. As such, I have the following:
app.get('/callback', async function (req, res) {
When a user is sent to the callback portion of my site, I am supposed to receive these req & res parameters. However, I am having an issue here. The url my OAuth2 Application is sending the user to is the following:
https://example.com/callback#access_token=abc
Oh no! This creates a problem for me. I am unable to get the access_token from req! Please assist me on what I can do to retrieve the access token from this url. The parameters from req are only giving me /callback
and others, but not the #access_token=abc