Hello, oauth.io.
I've set up two routes using OAuth.auth and OAuth.redirect in my Node.js app with Express. I forgot to add my domain to the whitelist and tried to visit the auth route. It called back to my redirect route with the error, but did so like this:
/redirect#oauthio=<url-encoded-json>
...rather than this:
/redirect?oauthio=<url-encoded-json>
That caused it to relay this error:
Error: Could not find oauthio in query string
Changing the # to a ? resulted in the expected error:
Error: Origin "<redirect-url>" does not match any registered domain/url on oauth.io
I assume this is not intended?
Thanks!
Hello, oauth.io.
I've set up two routes using
OAuth.authandOAuth.redirectin my Node.js app with Express. I forgot to add my domain to the whitelist and tried to visit the auth route. It called back to my redirect route with the error, but did so like this:...rather than this:
That caused it to relay this error:
Changing the
#to a?resulted in the expected error:I assume this is not intended?
Thanks!