How do I POST JSON data with Curl from a terminal/commandline to Test Spring REST?

Internet of Things IoT Frameworks 2 years ago

0 1 0 0 0 tuteeHUB earn credit +10 pts

5 Star Rating 1 Rating

Posted on 16 Aug 2022, this text provides information on IoT Frameworks related to Internet of Things. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.

Take Quiz To Earn Credits!

Turn Your Knowledge into Earnings.

tuteehub_quiz

Answers (1)

Post Answer
profilepic.png
manpreet Tuteehub forum best answer Best Answer 2 years ago
_x000D_ You need to set your content-type to application/json. But -d sends the Content-Type application/x-www-form-urlencoded, which is not accepted on Spring's side. Looking at the curl man page, I think you can use -H: -H "Content-Type: application/json" Full example: curl --header "Content-Type: application/json" \ --request POST \ --data '{"username":"xyz","password":"xyz"}' \ http://localhost:3000/api/login (-H is short for --header, -d for --data) Note that -request POST is optional if you use -d, as the -d flag implies a POST request. On Windows, things are slightly different. See the comment thread.
0 views
0 shares

No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.

Q

Struggling to grow your email list in 2025? Tried these proven hacks yet?

Digital Marketing 0 Answers
Q

What if losing weight could be as easy as sipping delicious smoothies every day?

Health 0 Answers

Similar Blogs


Azure IoT hub and sending messages with mosquitto_...

_x000D_ _x000D_ I'm trying to send some simple message with mosquitto_pub to Azure IoT HUB but faced...

Manpreet Singh
2 years ago

How to generate AWS bootstrap certificates with ja...

_x000D_ _x000D_ According to this docs I need to generate so-called bootstrap certificates for my Io...

Manpreet Singh
2 years ago

is it possible to do 3way handshake only one time...

_x000D_ _x000D_ I am using mosquitto_pub to publish the data with TLS using a topic. I am using mosq...

Manpreet Singh
2 years ago

Important Internet of Things Links