github 上面有提供开源的第三方插件
https://github.com/GetBlimp/django-rest-framework-jwt
中文的使用文档:
http://getblimp.github.io/django-rest-framework-jwt/
第一步:
安装:pip install djangorestframework-jwt
第二步:配置
'rest_framework_jwt.authentication.JSONWebTokenAuthentication',
作用:就是将post 过来的token进行验证,验证完后将user取出来
第三步: 配置url
用postman 请求
我们再用postman 再来请求下goods 的接口
可以看到已经拿到user的信息了
在seething 里面设置token的有效期 以及jwt 的前缀