这是我正在关注的教程,链接
https://thinkster.io/tutorials/django-json-api/authentication
正如标题所述,我在此行收到此错误“无效格式字符串”:
'exp':int(dt.strftime('%s'))
_generate_jwt_token。
我查看了strftime的文档,但没有这样的格式'%s',其中有一个大写的S('%S'),我将格式更改为大写的S,但是我在尝试解码授权令牌的方法,我遇到以下错误
{“用户”:{“详细信息”:“验证无效。无法解码令牌。”}}
如果我使用小写字母s,则会收到“无效格式字符串”错误。
(authentication/backends.py)
def _authenticate_credentials(self, request, token):
"""
Try to authenticate the given credentials. If authentication is
successful, return the user and token. If not, throw an error.
"""
try:
payload = jwt.decode(token, settings.SECRET_KEY)
except:
msg = 'Invalid authentication. Could not decode token.'
raise exceptions.AuthenticationFailed(msg)
(authentication/models.py)
def _generate_jwt_token(self):
"""
Generates a JSON Web Token that stores this user's ID and has an expiry
date set to 60 days into the future.
"""
dt = datetime.now() + timedelta(days=60)
token = jwt.encode({
'id': self.pk,
'exp': int(dt.strftime('%s'))
}, settings.SECRET_KEY, algorithm='HS256')
return token.decode('utf-8')
我希望以下令牌“令牌eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6MiwiZXhwIjo0fQ.TWICRQ6BgjWMXFMizjNAXgZ9T2xFnpGiQQuhRKtjckw用户回车”。
答案 0 :(得分:1)
我也被困在这里,是平台特定的%s导致了该错误。我将其更改为%S(注意大写)
答案 1 :(得分:0)
应该是:
token = jwt.encode({
'id': self.pk,
'exp': dt.utcfromtimestamp(dt.timestamp()) #CHANGE HERE
}, settings.SECRET_KEY, algorithm='HS256')
这是因为jwt将到期时间与utc时间进行比较。您可以在此处使用jwt调试工具再次检查您的秘密密钥是否正确:https://jwt.io/
更多阅读此处:https://pyjwt.readthedocs.io/en/latest/usage.html#encoding-decoding-tokens-with-hs256