stacklens / dusai-blog

杜赛的博客的评论区。详情见 Issue。
2 stars 0 forks source link

article/93/ #63

Open stacklens opened 4 years ago

stacklens commented 4 years ago

https://www.dusaiphoto.com/article/93/

TooYooG commented 1 year ago

高版本的DJango和restframework在安装了simple-jwt之后,更改Token的有效期跟博主的不一样。


from datetime import timedelta

... REST_FRAMEWORK = { ... ‘SIMPLE_JWT’: { 'JWT_ALLOW_REFRESH': True, 'JWT_EXPIRATION_DELTA': timedelta(hours=3), 'JWT_REFRESH_EXPIRATION_DELTA': timedelta(days=1), }, }


博主的方法应该是低版本的,请各位在报错后耐心看一下版本