どのように設定するGoogleのScope
Bluemix上モバイルクライアントアクセスサービスを使用していますか?カスタムGoogleの範囲
私はemail
アドレスが必要ですが、デフォルトではprofile
が設定されているようです。
passport.authenticate()
の呼び出しに行く:
var authRouter = express.Router();
app.use('/auth', authRouter);
authRouter.get('/google', passport.authenticate('google', {
scope : ['profile', 'email']
}));
文脈を:私は丁度アントン・アレクサンドロフなどは彼のポストhereに書かれているWebアプリケーションを保護しています。
この質問が好きな方は、こちらのソリューションに投票してください。https://ibmcloud.ideas.aha.io/ideas/IDEA-I-1887 –