I have a new problem when I call this interface post api/users
, it returns an error
{
"errors": [
{
"status": "422",
"code": "validation_error",
"detail": "username 不能为空。",
"source": {
"pointer": "/data/attributes/username"
}
},
{
"status": "422",
"code": "validation_error",
"detail": "email 不能为空。",
"source": {
"pointer": "/data/attributes/email"
}
},
{
"status": "422",
"code": "validation_error",
"detail": "password 不能为空。",
"source": {
"pointer": "/data/attributes/password"
}
}
]
}
I tried any away to request this API, Body, Params, form-data.
I requested this interface using the Postman tool,
What should I do?