使用Node.js / Passport在Google身份验证回调中缺少范围错误

时间:2015-02-20 13:44:59

标签: javascript node.js heroku passport.js

此错误仅在Heroku(生产)上发生,而不是在本地发生。 我试过了两个:

passport.authenticate('google', { scope: 'https://www.googleapis.com/auth/plus.login https://www.googleapis.com/auth/analytics.readonly' })

passport.authenticate('google', { scope: ['profile', 'email'] })

范围是数组还是空格分隔的字符串。

当我转到Google身份验证链接时,范围是网址中的IS。在我的实时制作应用中生成的没有区别。

但我仍然得到:

Error 400

Error: invalid_request

Missing required parameter: scope

2 个答案:

答案 0 :(得分:6)

我认为您使用的是Passport Google OAuth,而不仅仅是Passport Google(OpenId)模块?

如果您使用的是OAuth通行证,则使用Google进行身份验证需要额外的范围参数。

作为字符串传递,您必须将'openid'作为第一个单词传递,例如: 例如,如果您希望按文件访问用户的Google云端硬盘,

openid profile email https://www.googleapis.com/auth/drive.file

来源(S):

https://developers.google.com/identity/protocols/OpenIDConnect#scope-param https://developers.google.com/+/api/oauth#login-scopes

答案 1 :(得分:-1)

有关错误消息

Error 400
Error: invalid_request
Missing required parameter: scope

您需要在表单中添加范围

<input type="hidden" name="scope" value="https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo#email https://www.googleapis.com/auth/plus.me https://www.googleapis.com/auth/tasks https://www-opensocial.googleusercontent.com/api/people https://www.googleapis.com/auth/plus.login" />

请参阅spring social login与linkedin,facebook,twitter和Google提供商示例应用程序。