dolyw / ShiroJwt

API SpringBoot + Shiro + Java-Jwt + Redis(Jedis)

Home Page:https://gitee.com/dolyw/ShiroJwt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

shiro会给token前加上Bearer字符串

disabilites opened this issue · comments

String token = (String)authenticationToken.getCredentials();
这里获取的token前会被加上Bearer

原本应该是:
eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJjdXJyZW50VGltZU1pbGx ……

现在
Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJjdXJyZW50VGltZU1pbGx ……

不会的哦,这个是你自己调用工具的问题,你检测下你调用接口的工具吧

谢谢,是 postman 给我加上的😂

嗯嗯,看到这个Bearer我就猜是这样,哈哈哈