Curl
Wichtige Optionen
- -k Erlauben von selbsterzeugten Zertifikaten bei Verwendung von https
- -v Liefert nicht den Inhalt, sondern Info über Weiterleitungen etc.
- -d POST Daten
- -X METHOD Methode: GET POST PUT DELETE HEAD PATCH
- -o FILE Speichert das Ergebnis in FILE
Beispiele
# POST
curl --data '{ name: "Jonny" }' -H "Content-Type: application/json" http://sv.com:5812/register
# Datei als Inhalt:
curl -d @request.json -H "Content-Type: application/json" http://sv.com:8082/spring-rest/foos/new
# PUT:
curl --upload-file flower.png http://www.example.com/receive.cgi