我正在尝试第一次设置护照,并且只使用一个谷歌登录选项。我注册了 google apis,所以我有所有的设置。相关代码如下,但是当我的应用程序进行'/auth/google/'
调用时,它只是失败,没有响应或错误消息。我已经改变了配置的一堆方法无济于事。我还用passport.authenticate('google')
console.log 替换了匿名函数,以仔细检查我的 Web 服务是否正常运行。所以我知道它正在到达passport.authenticate('google')
.
// serialize session
passport.serializeUser(function (user, done) {
done(null, user.id);
});
passport.deserializeUser(function (obj, done) {
done(null, obj);
});
// use google strategy
passport.use(new googleStrategy({
clientID: config.google.clientID,
clientSecret: config.google.clientSecret,
callbackURL: config.google.callbackURL,
scope: 'https://www.google.com/m8/feeds https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/userinfo.profile'
},
function(accessToken, refreshToken, profile, done) {
console.log(profile);
}
));
app.use(passport.initialize());
app.use(passport.session());
app.get('/auth/google', passport.authenticate('google'));
app.get('/auth/google/callback', passport.authenticate('google', { failureRedirect: '/', scope: 'https://www.google.com/m8/feeds' }), signin);
编辑:这是我的 http 请求,我正在使用 angular,此功能与 ng-click 按钮相关联。
$scope.signIn = function () {
$http({method: 'GET', url: '/auth/google'}).
success(function (data, status, headers, config) {
console.log('success');
}).
error(function (data, status, headers, config) {
console.log(data);
console.log(status);
console.log(headers);
console.log(config);
});
};
那些日志什么也没返回