You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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!
The text was updated successfully, but these errors were encountered:
Hello, oauth.io.
I've set up two routes using
OAuth.auth
andOAuth.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:...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!
The text was updated successfully, but these errors were encountered: