これは私のindex.jsです
app.get('/api/user', auth.authenticate, function(req, res){
res.send("hi");
});
これは私の auth.authenticate 関数です:
exports.authenticate = function(req, res,done) {
// function checkToken(req,res,next){
console.log(req.body);
authToken = req.body["auth_token"]
consumerKey = req.body["consumer_key"]
checkAuth(authToken,consumerKey,function response(user){
done();
});
}
認証後、「ユーザー」をindex.jsのapp.getに戻したいので、それを使用してより多くのデータを取得できますが、その方法を理解できません。
done() コールバックを介してユーザーを送信することは可能ですか? やってみましたがだめでした。