C:\Users\86139>curl -H "Content-Type: application/json" -X POST -d '{"username": "admin","secret": "admin"}' "http://localhost:8081/api/user" curl: (3) URL using bad/illegal format or missing URL curl: (3) unmatched close brace/bracket in URL position 6: admin}'
时间: 2023-07-03 11:05:57 浏览: 139
php-curl-class:PHP Curl类使发送HTTP请求和与Web API集成变得容易
这个命令的意思是使用curl工具向"http://localhost:8081/api/user"这个URL发送POST请求,请求体中包含一个JSON格式的数据。请求头中指定Content-Type为application/json。但是看到这个命令出现了一些错误,可能是因为JSON格式的数据没有正确地转义。你可以检查一下JSON数据是否正确转义,或者将数据写到一个文件中,然后使用curl的--data-binary选项读取文件中的数据发送请求。
阅读全文