- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我刚刚使用 express basic auth 在 nodejs 中创建了基本身份验证
var express = require('express');
var app = express();
// Authenticator
app.use(express.basicAuth('testuser','testpassword'));
app.get('/home', function(req, res) {
res.send('Hello World');
});
app.listen(process.env.PORT || 8080);
我收到以下错误。我不知道我哪里出错了。
app.use(express.basicAuth('testuser','testpassword'));
^
TypeError: Object function createApplication() {
var app = function(req, res, next) {
app.handle(req, res, next);
};
mixin(app, proto);
mixin(app, EventEmitter.prototype);
app.request = { __proto__: req, app: app };
app.response = { __proto__: res, app: app };
app.init();
return app;
} has no method 'basicAuth'
at Object.<anonymous> (E:\node_modules\npm\login\app.js:5:17)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16)
at node.js:902:3
我对 nodejs 的东西很陌生。任何帮助将不胜感激
最佳答案
正如评论中提到的,Express 4 不再附带中间件,您可以直接从 express repo 复制实现。或使用类似的解决方案:
var express = require('express');
var app = express();
// Authenticator
app.use(function(req, res, next) {
var auth;
// check whether an autorization header was send
if (req.headers.authorization) {
// only accepting basic auth, so:
// * cut the starting "Basic " from the header
// * decode the base64 encoded username:password
// * split the string at the colon
// -> should result in an array
auth = new Buffer(req.headers.authorization.substring(6), 'base64').toString().split(':');
// use Buffer.from in with node v5.10.0+
// auth = Buffer.from(req.headers.authorization.substring(6), 'base64').toString().split(':');
}
// checks if:
// * auth array exists
// * first value matches the expected user
// * second value the expected password
if (!auth || auth[0] !== 'testuser' || auth[1] !== 'testpassword') {
// any of the tests failed
// send an Basic Auth request (HTTP Code: 401 Unauthorized)
res.statusCode = 401;
// MyRealmName can be changed to anything, will be prompted to the user
res.setHeader('WWW-Authenticate', 'Basic realm="MyRealmName"');
// this will displayed in the browser when authorization is cancelled
res.end('Unauthorized');
} else {
// continue with processing, user was authenticated
next();
}
});
app.get('/home', function(req, res) {
res.send('Hello World');
});
app.listen(process.env.PORT || 8080);
关于node.js - express.basicAuth 抛出错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24283848/
我正在尝试将 go 应用程序部署到 Google App Engine,但由于此错误导致编译失败。 request.BasicAuth undefined (type *http.Request ha
我正在尝试使用express-basic-auth对express应用程序中的端点进行一些基本授权,但它一直给我一个401未经授权的错误。我认为我在 Post man 中发送的 header 不正确:
我正在使用 node、express 和 connect 来构建一个简单的应用程序,并按如下方式实现基本的 HTTP 身份验证(为简洁起见,省略了大量代码): var express = requir
我正在将 Express 从 3.x 迁移到 4.x,由于 Express 4 没有 basicAuth,我尝试将其替换为 basic-auth module . 我遇到的问题是异步检查凭据(通过我的
使用Dropwizard Authentication 0.9.0-SNAPSHOT 我想检查数据库用户 (UserDAO) 的凭据。 我收到以下异常 ! org.hibernate.Hibernat
我正在尝试使用 token 实现oauth。一切看起来都很好,但是在 POST 之后 http://localhost:8080/oauth/token?grant_type=password 设置B
喷雾很难!!我现在知道我对 HTTP 协议(protocol)的了解还远远不够,API 设计也不容易。然而,我仍然非常希望我的练习应用程序能够工作。我正在为 POST/PUT/DELETE 方法编写此
假设我已经使用 BasicAuth 启用了对资源的身份验证: class MyBasicAuth(BasicAuth): def check_auth(self,username,passwo
即使我使用 Tornado 发送 401 状态代码,我也没有在 IE/Firefox 中看到密码提示:- import tornado.ioloop import tornado.web class
我开始构建一个非常小的 API,我需要验证一些端点,而不是所有端点。我希望能够选择使用要在“路由”正文中调用的 authenticate! 方法来强制验证的端点。 例如: resource :grou
我正在尝试为我的新手项目实现基本身份验证(来自 Spring Security)。为了创建用户,我将 JSON 发送到 /register 处的 POST,然后创建用户并将其放入 H2 内存数据库中
我正在运行 prerender server一切正常,但现在我想使用 basicAuth 设置一些安全性. 在我的控制台中,我导出了用户名和密码 export BASIC_AUTH_USERNAME=
我的 NodeJS 服务器,使用express,有一堆条目来指定各种路由: app.post('list_streams.json', auth, stream_handler.list_str
我正在尝试使用 Flask 和 HTTP Basic Auth 创建登录系统。我的问题是,我有责任从数据库提供用户信息,还是 basicauth 为我创建和访问这些数据库?如果没有,我可以用什么来做到
我对在 Yii2 中创建 REST api 的简单程度印象深刻。但是,我在理解基本身份验证时遇到了一些麻烦。我的需求非常简单,我希望我的解决方案能够效仿。 我在这里需要基本 token 身份验证。我现
我刚刚使用 express basic auth 在 nodejs 中创建了基本身份验证 var express = require('express'); var app = express();
为了使用基本身份验证来保护整个应用程序,这种方式可以为所有路由器做: package main import ( "crypto/subtle" "net/http" "git
最近我听说 Twitter 将关闭 Twitter API 上的基本身份验证,他们转向 OAuth。 所以我想知道 BasicAuth、OAuth 和 XAuth 之间有什么区别? 每个 Auth 的
在我的设置中,我有一个向我的系统发送 Http 请求的上游系统。这些 Http 请求的 header 中包含 basicAuth token 。 我正在使用 Spring-boot 和外部 tomca
登录认证的路由——app.Handle("GET", "/v1/users/token", u.Token) . 我们可以从 request.BasicAuth 中获取名称和密码。 func (u *
我是一名优秀的程序员,十分优秀!