我正在使用Django自定义后端检查JWTtoken有错误:用户配置文件匹配查询不存在?

时间:2018-12-05 03:22:35

标签: django django-rest-framework

我正在使用djang rest框架JWTtoken出现错误:用户配置文件匹配查询不存在,我检查了代码,未发现错误在哪里。

enter image description here

enter image description here

在调试后获取消息:

{
    "non_field_errors": [
        "Unable to login with the authentication information provided。"
    ]
}

1 个答案:

答案 0 :(得分:0)

您正在使用get运算符。如果找不到查询,则确实会引发错误。 通过查看查询,您正在尝试使username=usernamepassword=password的用户与请求中提供的password匹配。

此错误是因为数据库中没有使用该凭据的用户。仅此而已。