为什么我的Firebase请求返回为500(内部服务器错误)?

时间:2017-04-27 07:40:05

标签: javascript node.js firebase firebase-authentication

我有以下不执行的代码(我收到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);
        })
});

1 个答案:

答案 0 :(得分:2)

我想当您使用 帖子 请求时,您必须使用req.body代替:

req.body.username, req.body.password