The expiration time for the token I am creating is one week
expiration_time = timedelta(weeks=1)
app.config['JWT_ACCESS_TOKEN_EXPIRES'] = expiration_time
How do I make the token last longer if the user use it before it expires? like e.g. if the user uses the token and sends a message, I would like to refresh the token's expiration time and make it a week again. Is there any way to do so?