4

我使用 jsonwebtoken 作为身份验证方法创建了一个 node express RESTful API。但无法使用 Angular js 将 x-access-token 作为标头传递。

我的 JWT 令牌认证脚本是,

apps.post('/authenticate', function(req, res) {

    // find the item
    Item.findOne({
        name: req.body.name
    }, function(err, item) {

        if (err) throw err;

        if (!item) 
        {
            res.json({ success: false, message: 'Authentication failed. item not found.' });
        } 
        else if (item) 
        {

            // check if password matches
            if (item.password != req.body.password) 
            {
                res.json({ success: false, message: 'Authentication failed. Wrong password.' });
            } 
            else 
            {

                // if item is found and password is right
                // create a token
                var token = jwt.sign(item, app.get('superSecret'), {
                    expiresIn: 86400 // expires in 24 hours
                });



                    res.json({
                        success: true,
                        message: 'Enjoy your token!',
                        token: token
                    }); 





            }       

        }

    });
});

检查令牌是否正确的中间件是,

apps.use(function(req, res, next) {

    // check header or url parameters or post parameters for token
    var token = req.body.token || req.params.token || req.headers['x-access-token'];

    // decode token
    if (token) 
    {

        // verifies secret and checks exp
        jwt.verify(token, app.get('superSecret'), function(err, decoded) {          
            if (err) 
            {
                return res.json({ success: false, message: 'Failed to authenticate token.' });      
            } 
            else 
            {
                // if everything is good, save to request for use in other routes
                req.decoded = decoded;  
                next();
            }
        });

    } 
    else 
    {

        // if there is no token
        // return an error
        return res.status(403).send({ 
            success: false, 
            message: 'No token provided.'
        });

    }

});

最后 GET 方法脚本是,

app.get('/display', function(req, res) {
    Item.find({}, function(err, items) {



            $http.defaults.headers.common['X-Access-Token']=token;

            res.json(items);
});
});

但它总是无法通过身份验证。请任何人帮我解决这个问题。我真的被困在这里了。

它始终只显示以下身份验证失败消息。

{"success":false,"message":"No token provided."}
4

3 回答 3

6

如果您在角度控制器中使用 $http 作为依赖项,那么我猜这会对您有所帮助 -

var token = this.AuthToken.getToken();
$http.get('/api/me', { headers: {'x-access-token': token} });

上传角度代码后,我将根据您的代码进行更改。

于 2016-04-27T11:16:16.880 回答
1

客户端应该使用 Bearer 方案在 Authorization 标头中发送令牌,因为自 2012 年以来已弃用“X-”标头:

您的节点现在将遵循:

apps.post('/authenticate', function(req, res) { 
    .....
    var token = 'Bearer' + ' ' + jwt.sign(item, app.get('superSecret'), {
        expiresIn: 86400 // expires in 24 hours
    });
    .....
 }

apps.use(function(req, res, next) {
    // Trim out the bearer text using substring
    var token = req.get('Authorization').substring(7);
    ....
}

然后你的角度代码将变为:

var token = this.AuthToken.getToken();
$http.get('/api/me', { headers: {'Authorization': token} });
于 2016-10-18T21:51:21.277 回答
0

您可以创建一个拦截器来捕获所有 ajax 调用并将令牌注入标头。这样你就不会在每次进行 ajax 调用时都注入它。

如果您想走这条路,这是一个很好的起点: http ://www.webdeveasy.com/interceptors-in-angularjs-and-useful-examples/

于 2016-10-19T01:13:02.543 回答