어떻게 구성 구글의 Scope
Bluemix에 모바일 클라이언트 액세스 서비스를 사용하고 계십니까?사용자 정의 구글의 범위
주소는 email
이지만, 기본값은 profile
인 것처럼 보입니다.
passport.authenticate()
의 호출에 간다 :
var authRouter = express.Router();
app.use('/auth', authRouter);
authRouter.get('/google', passport.authenticate('google', {
scope : ['profile', 'email']
}));
상황화를 : 나는 정확히 안톤 알렉산드로 등이 자신의 게시물 here에서 작성한 웹 애플리케이션을 보호하고 있습니다.
이 질문이 마음에 들면, 해결책을 위해 투표하십시오 : https://ibmcloud.ideas.aha.io/ideas/IDEA-I-1887 –