标签: express jwt
我正在模拟JWT,只是想确认Express应用程序中首选的样式。
我有:
app.get('/api/v1/users/:id', function (req, res) { req.headers['Authorization: Bearer'] = 'ABc123'; req.headers.authorization = 'Bearer: somEE!123';
这是console.log的输出值:
哪种方式才能体现JWT的共识?