stormpath logout URL 路由不工作
stormpath logout URL route not working
我在 /logout URL 中看到此错误消息 "Cannot GET /logout",但从文档看来 link 应该自动注册为路由。我的代码目前非常基础,看起来像:
var express = require("express");
var stormpath = require('express-stormpath');
var app = express();
var port = 1337;
app.use(stormpath.init(app, {
apiKey: {
id: '<>',
secret: '<>'
},
application: {
href: "<>"
},
website: true
}));
app.get("/", stormpath.loginRequired, function(req, res) {
res.send("Hello Node.js and Express.");
});
app.on('stormpath.ready', function() {
console.log('Stormpath Ready!');
});
console.log("Web application opened.");
app.listen(port);
非常感谢任何帮助。
express-stormpath 的注销路由需要 POST 请求。我们这样做是为了防止 omnibar 意外地将您从应用程序中注销。
我在 /logout URL 中看到此错误消息 "Cannot GET /logout",但从文档看来 link 应该自动注册为路由。我的代码目前非常基础,看起来像:
var express = require("express");
var stormpath = require('express-stormpath');
var app = express();
var port = 1337;
app.use(stormpath.init(app, {
apiKey: {
id: '<>',
secret: '<>'
},
application: {
href: "<>"
},
website: true
}));
app.get("/", stormpath.loginRequired, function(req, res) {
res.send("Hello Node.js and Express.");
});
app.on('stormpath.ready', function() {
console.log('Stormpath Ready!');
});
console.log("Web application opened.");
app.listen(port);
非常感谢任何帮助。
express-stormpath 的注销路由需要 POST 请求。我们这样做是为了防止 omnibar 意外地将您从应用程序中注销。