我正在使用djang rest框架JWTtoken出现错误:用户配置文件匹配查询不存在,我检查了代码,未发现错误在哪里。
在调试后获取消息:
{
"non_field_errors": [
"Unable to login with the authentication information provided。"
]
}
答案 0 :(得分:0)
您正在使用get
运算符。如果找不到查询,则确实会引发错误。
通过查看查询,您正在尝试使username=username
或password=password
的用户与请求中提供的password
匹配。
此错误是因为数据库中没有使用该凭据的用户。仅此而已。