How do I POST JSON data with cURL?

后端 未结 24 2589
刺人心
刺人心 2020-11-21 23:56

I use Ubuntu and installed cURL on it. I want to test my Spring REST application with cURL. I wrote my POST code at the Java side. However, I want to test it with cURL. I am

24条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-22 00:27

    This worked for me for on Windows10

    curl -d "{"""owner""":"""sasdasdasdasd"""}" -H "Content-Type: application/json" -X  PUT http://localhost:8080/api/changeowner/CAR4
    

提交回复
热议问题