我已经用以下方法创建了RESTFul APIs
django-rest-framework
. The user endpoint is:
/api/v1/users
我想创建一个新用户,所以我以JSON格式发送用户数据。
"username": "Test1", "email": "test1@gmail.com", "first_name": "Test1", "last_name": "Test2", "password":"12121212"我正在使用谷歌浏览器的扩展程序Postman来测试API。但是,在发送请求后,用户数据没有被保存。响应包含这个错误。
"detail": "Unsupported media type \"text/plain;charset=UTF-8\" in request."这就是Postman中请求细节的样子。