rest api 将此命令声明为创建用户
curl -uadmin:admin -X POST 172.31.68.145:8111/app/rest/users
但它为用户列表提供了如何创建用户的任何建议?
rest api 将此命令声明为创建用户
curl -uadmin:admin -X POST 172.31.68.145:8111/app/rest/users
但它为用户列表提供了如何创建用户的任何建议?
这是因为您没有为请求指定任何发布数据。
让我们举个例子:
curl -H "Content-Type: application/json" -X POST -d '{"username":"xyz","password":"xyz"}' http://localhost:9090/api/login
这将使用data: 执行POST
请求,并且该数据的标头设置为: 。http://localhost:9090/api/login
POST
{"username":"xyz","password":"xyz"}
Content-Type: application/json