//plugin.js
'use strict';
exports.validate = {
enable: true,
package: 'egg-validate',
};
exports.static = true;
exports.security = {
xframe: {
enable: false,
},
};
`
就把cnode-api项目在本地运行之后,修改了这个安全验证,关闭之。但是我post请求还是会出现invalid csrf token的问题。还有我需要注意的地方吗?
exports.security = {
xframe: {
enable: false,
},
这段是配置,放到 config.default.js
发自我的 iPhone
在 2017年9月8日,14:39,放荡年华 notifications@github.com 写道:
exports.security = {
xframe: {
enable: false,
},
};
//config.default.js
'use strict';
module.exports = {
middleware: [ 'errorHandler' ],
errorHandler: {
match: '/api',
},
security: {
xframe: {
enable: false,
},
},
};
这种也试过,我是用postman post 请求的
Please set config.keys first, now using mock keys for dev env (E:\FrontEndWorkspace\egg\cnode-api)
2017-09-08 14:48:50,540 WARN 8716 [-/127.0.0.1/-/26ms POST /api/v2/topics/getRecord] invalid csrf token. See https://eggjs.org/zh-cn/core/security.html#安全威胁csrf的防范
2017-09-08 14:48:50,543 WARN 8716 [-/127.0.0.1/-/28ms POST /api/v2/topics/getRecord] nodejs.ForbiddenError: invalid csrf token
at Object.throw (E:\FrontEndWorkspace\egg\cnode-api\node_modules\koa\lib\context.js:89:23)
at Object.assertCsrf (E:\FrontEndWorkspace\egg\cnode-api\node_modules\egg-security\app\extend\context.js:148:17)
at Object.csrf (E:\FrontEndWorkspace\egg\cnode-api\node_modules\egg-security\lib\middlewares\csrf.js:31:10)
at csrf.next (<anonymous>)
at Object.<anonymous> (E:\FrontEndWorkspace\egg\cnode-api\node_modules\koa-compose\index.js:28:19)
at Generator.next (<anonymous>)
at onFulfilled (E:\FrontEndWorkspace\egg\cnode-api\node_modules\co\index.js:65:19)
at E:\FrontEndWorkspace\egg\cnode-api\node_modules\co\index.js:54:5
at Promise (<anonymous>)
at Object.co (E:\FrontEndWorkspace\egg\cnode-api\node_modules\co\index.js:50:10)
message: 'invalid csrf token'
pid: 8716
可是你关的是 xframe
发自我的 iPhone
在 2017年9月8日,14:53,放荡年华 notifications@github.com 写道:
//config.default.js
'use strict';
module.exports = {
middleware: [ 'errorHandler' ],
errorHandler: {
match: '/api',
},
security: {
xframe: {
enable: false,
},
},
};
这种也试过,我是用postman post 请求的Please set config.keys first, now using mock keys for dev env (E:\FrontEndWorkspace\egg\cnode-api)
2017-09-08 14:48:50,540 WARN 8716 [-/127.0.0.1/-/26ms POST /api/v2/topics/getRecord] invalid csrf token. See https://eggjs.org/zh-cn/core/security.html#安全威胁csrf的防范
2017-09-08 14:48:50,543 WARN 8716 [-/127.0.0.1/-/28ms POST /api/v2/topics/getRecord] nodejs.ForbiddenError: invalid csrf token
at Object.throw (E:\FrontEndWorkspace\egg\cnode-api\node_modules\koa\lib\context.js:89:23)
at Object.assertCsrf (E:\FrontEndWorkspace\egg\cnode-api\node_modules\egg-security\app\extend\context.js:148:17)
at Object.csrf (E:\FrontEndWorkspace\egg\cnode-api\node_modules\egg-security\lib\middlewares\csrf.js:31:10)
at csrf.next ()
at Object.(E:\FrontEndWorkspace\egg\cnode-api\node_modules\koa-compose\index.js:28:19)
at Generator.next ()
at onFulfilled (E:\FrontEndWorkspace\egg\cnode-api\node_modules\co\index.js:65:19)
at E:\FrontEndWorkspace\egg\cnode-api\node_modules\co\index.js:54:5
at Promise ()
at Object.co (E:\FrontEndWorkspace\egg\cnode-api\node_modules\co\index.js:50:10)
message: 'invalid csrf token'
pid: 8716
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or mute the thread.
关闭csrf是
exports.security = {
csrf: {
enable: false,
},
楼主最后怎么搞定的,求告知
我也是用Postman发送的请求,关闭了csrf后还是报invalid csrf token,求问楼主解决了吗
@guozefei @ghost 你们不会在 plugin 里面 关 csrf 的吧?
应该要在 config.default 或者 config.local 里面
我是enable写错了 写成enabled 导致出错 不好意思 @Stupidism
Most helpful comment
关闭csrf是
exports.security = { csrf: { enable: false, },