We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
looking over the code for passport-steam they simply check if the openid.op_endpoint matches config.authorizationURL
if (query['openid.op_endpoint'] !== config.authorizationURL) { const error = createError({ statusCode: 401, message: 'Claimed identity is invalid.', }); if (!onError) throw error; return onError(event, error); }
trying to run this in production with a https:// endpoint the call to https://steamcommunity.com/openid/login fails with 403
https://steamcommunity.com/openid/login
The text was updated successfully, but these errors were encountered:
Pull request welcome if you find a way to improve the Steam support
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
looking over the code for passport-steam they simply check if the openid.op_endpoint matches config.authorizationURL
trying to run this in production with a https:// endpoint the call to
https://steamcommunity.com/openid/login
fails with 403The text was updated successfully, but these errors were encountered: