欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

未授权,请登录,报401错误

程序员文章站 2022-07-05 18:22:34
...

登录后报401错误,提示代码如下

code: 0
message: "Your request was made with invalid credentials."
name: "Unauthorized"
status: 401
type: "yii\web\UnauthorizedHttpException"

问题是
未授权,请登录,报401错误

// 解决办法:请求拦截中把config.headers['X-Token'] = token;改成下面的
config.headers['Authorization'] = 'Bearer ' + token;