报错Submitted credentials for token did not match the expected credentials

原因:前端传token到后台,后台接收token的时候token的值被双引号包含了,所以后台对接收到的token进行了去双引号处理,结果报错如标题。

解决方案:前端传token的时候不要带双引号即可。

你可能感兴趣的:(springboot,shiro)