0

我正在使用 pyjwt 如下:

def encode_auth_token(self, user_id):
    '''Generates the auth token.'''

    try:
        payload = {
            'exp': datetime.utcnow() + datetime.timedelta(
                days = current_app.config.get('TOKEN_EXPIRATION_DAYS'),
                seconds = current_app.config.get('TOKEN_EXPIRATION_SECONDS')
            ),
            'iat': datetime.datetime.utcnow(),
            'sub': user_id
        }
        return jwt.encode(
            payload,
            current_app.config.get('SECRET_KEY'),
            algorithm='HS256'
        )
    except Exception as e:
        return e

问题在于,根据文档 instance.encode() 应该返回bytes,而根据另一个资源,它应该返回str。当我通过单元测试运行它时:

auth_token = user.encode_auth_token(user.id)
self.assertTrue(isinstance(auth_token, str))

我得到:AssertionError: False is not true当我替换为时strbytes我得到了同样的错误。那么这个方法应该返回什么类型呢?

4

1 回答 1

0

它大量返回字节数据。如果您可以确认确实如此,则可以通过调用令牌实例本身的 decode 方法来强制它返回字符串。

token = jwt.encode(payload,secret).decode('utf-8')
return token
于 2020-07-18T11:19:16.320 回答