我有以下不执行的代码(我收到500内部服务器错误)。
我做错了什么?
app.post('/api/sign-in', function (req, res, next) {
//auth
firebase.auth().signInWithEmailAndPassword(req.query.username, req.query.password)
//get back promise, log user object's email address
.then(function (user) {
console.log(user.email)
})
//log error
.catch(function (error) {
console.log(error);
})
});
答案 0 :(得分:2)
我想当您使用 帖子 请求时,您必须使用req.body
代替:
req.body.username, req.body.password