ฉันมีแอปพลิเคชันเซิร์ฟเวอร์ใน asp.net ใน windows ซึ่งฉันมีบริการเว็บ
ฉันจะเรียกบริการเว็บใน Ubuntu โดยใช้เชลล์สคริปต์ได้อย่างไรโดยใช้คำสั่ง cURL
ฉันมีแอปพลิเคชันเซิร์ฟเวอร์ใน asp.net ใน windows ซึ่งฉันมีบริการเว็บ
ฉันจะเรียกบริการเว็บใน Ubuntu โดยใช้เชลล์สคริปต์ได้อย่างไรโดยใช้คำสั่ง cURL
คำตอบ:
Linux ให้คำสั่งเล็กน้อยที่ดีซึ่งทำให้ชีวิตของเราง่ายขึ้นมาก
ได้รับ:
ด้วย JSON:
curl -i -H "Accept: application/json" -H "Content-Type: application/json" http://hostname/resource
ด้วย XML:
curl -H "Accept: application/xml" -H "Content-Type: application/xml" -X GET http://hostname/resource
โพสต์:
สำหรับการโพสต์ข้อมูล:
curl --data "param1=value1¶m2=value2" http://hostname/resource
สำหรับการอัพโหลดไฟล์:
curl --form "fileupload=@filename.txt" http://hostname/resource
RESTful HTTP Post:
curl -X POST -d @filename http://hostname/resource
สำหรับการเข้าสู่เว็บไซต์ (รับรองความถูกต้อง):
curl -d "username=admin&password=admin&submit=Login" --dump-header headers http://localhost/Login
curl -L -b headers http://localhost/
-H
สามารถใช้การตั้งค่าสถานะเพื่อลบเนื้อหาของคุณเป็น "application / json" เมื่อโพสต์ข้อมูลด้วย -X POST