Node.js API アプリの Passport で Express を使用しています。 に渡す{session:false}
ことpassport.authenticate
でセッションを無効にできますが、600 回繰り返さないように 1 か所でこれを行う方法はありますか?
var app = express();
app.configure(function() {
app.use(express.bodyParser());
app.use(passport.initialize());
});
app.get('/users', passport.authenticate('hash', {session:false}), controllers.users.getAll);
app.get('/users/me', passport.authenticate('hash', {session:false}), controllers.users.getCurrentUser);
// and so on...
私ができることは素晴らしいことです:
app.donotuse(sessions).thanks();