返回rest_framework_jwt中的令牌到期

时间:2020-07-20 15:27:12

标签: python django django-rest-framework

我正在使用rest_framework_jwt进行身份验证。 我也使用我的自定义有效载荷处理程序来还返回带有令牌的用户。

def my_jwt_response_info(token, user=None, request=None):
    return {
        'token': token,
        'user': UserSerializer(user, context={'request': request}).data
    }

但是我还需要使生成的令牌到期,如何将其退回?

0 个答案:

没有答案