官网文档
https://django-rest-framework-simplejwt.readthedocs.io/en/latest/
安装
pip install djangorestframework-simplejwt
文章来源:https://www.toymoban.com/news/detail-725321.html
项目配置
REST_FRAMEWORK = {
...
'DEFAULT_AUTHENTICATION_CLASSES': (
...
'rest_framework_simplejwt.authentication.JWTAuthentication',
)
...
}
文章来源地址https://www.toymoban.com/news/detail-725321.html
拓展配置
# JWT扩展配置
import datetime
JWT_AUTH = {
# 设置生成jwt token的有效时间
'JWT_EXPIRATION_DELTA': datetime.timedelta(days=7),
}
到了这里,关于Django使用Token认证(simplejwt库的配置)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!