basic-auth 通用身份验证授权 http 请求头字段解析器
basic-auth 是一个通用基本身份验证授权头字段解析器。
安装
这是一个 Node.js 模块,可通过 npm registry 获得。安装是使用以下npm install
命令完成的 :
$ npm install basic-auth
应用程序接口
var auth = require('basic-auth')
auth(req)
从给定请求中获取基本身份验证凭据。的Authorization
报头进行解析,并且如果首部是无效的,undefined
则返回,否则将物体与name
和pass
属性。
auth.parse(string)
解析基本身份验证授权标头字符串。这将返回一个具有name
和pass
属性的对象,或者undefined
如果字符串无效。
例子
将 Node.js 请求对象传递给模块导出。如果解析失败 undefined
则返回,否则返回一个带有.name
and的对象.pass
。
var auth = require('basic-auth')
var user = auth(req)
// => { name: 'something', pass: 'whatever' }
来自任何其他位置的标头字符串也可以用 解析 auth.parse
,例如Proxy-Authorization
标头:
var auth = require('basic-auth')
var user = auth.parse(req.getHeader('Proxy-Authorization'))
使用 vanilla node.js http 服务器
var http = require('http')
var auth = require('basic-auth')
var compare = require('tsscmp')
// Create server
var server = http.createServer(function (req, res) {
var credentials = auth(req)
// Check credentials
// The "check" function will typically be against your user store
if (!credentials || !check(credentials.name, credentials.pass)) {
res.statusCode = 401
res.setHeader('WWW-Authenticate', 'Basic realm="example"')
res.end('Access denied')
} else {
res.end('Access granted')
}
})
// Basic function to validate credentials for example
function check (name, pass) {
var valid = true
// Simple method to prevent short-circut and use timing-safe compare
valid = compare(name, 'john') && valid
valid = compare(pass, 'secret') && valid
return valid
}
// Listen
server.listen(3000)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论