我正在努力掌握护照,特别是如何验证一个Restful api,我有点不确定如何测试它我拥有的东西
我有以下BearerStrategy:
var BearerStrategy = new Bearer({
},
function(token, done) {
process.nextTick(function () {
findByToken(token, function(err, user) {
if (err) { return done(err); }
if (!user) { return done(null, false); }
return done(null, user);
})
});
}
);
其中findByToken是:
var api_users = [
{ id: 1, username: 'bob', token: '123456789', email: 'bob@example.com' }
, { id: 2, username: 'joe', token: 'abcdefghi', email: 'joe@example.com' }
];
function findByToken(token, fn) {
for (var i = 0, len = users.length; i < len; i++) {
var user = api_users[i];
if (user.token === token) {
return fn(null, user);
}
}
return fn(null, null);
}
然后我有以下路线:
app.get('/api', passport.authenticate('bearer', { session: false}), function (request, response){
response.send('BAM! you got a response');
});
我已经尝试过邮差测试,但我得到Unauthorized
,但我不确定如何测试这个是否成功。上面的代码不是我的全部,这是我可以从网上找到的几个片段拼凑起来的最简单的解决方案。
在Post man中我有以下选项:Normal,Basic Auth,它需要参数username and Password
Digest Auth,它看起来是params Username, Realm, Password, Nonce, Algorithm, qop, Nonce count, Client nonce, Opaque
OAuth 1.0,用于查找参数Consumer Key, Consumer Secret, Token, Token Secret, Signature Method, Timestamp,Nonce, Version, Realm, Add params to header ,Auto add parameters
这对我来说是全新的,我尝试过谷歌搜索如何测试。任何人都能提供的任何指导都会很棒。