curl - Cloud Foundry CLI Reference Guide |
cf curl PATH [-iv] [-X METHOD] [-H HEADER]... [-d DATA] [--output FILE]
By default 'cf curl' will perform a GET to the specified PATH. If data
is provided via -d, a POST will be performed instead, and the Content-Type
will be set to application/json. You may override headers with -H and the
request method with -X.
For API documentation, please visit http://apidocs.cloudfoundry.org.
cf curl "/v2/apps" -X GET -H "Content-Type: application/x-www-form-urlencoded" -d 'q=name:myapp'
cf curl "/v2/apps" -d @/path/to/file
Angepasste Header, die in die Anforderung einbezogen werden sollen. Das Flag kann mehrfach angegeben werden
HTTP-Methode (GET, POST, PUT, DELETE etc.)
In den Anforderungshauptteil zu integrierende HTTP-Daten oder '@' gefolgt von dem Namen einer Datei, aus der die Daten gelesen werden sollen
Serverfehler geben Exit-Code 22 zurück.
Antwortheader in Ausgabe einbeziehen
cURL-Hauptteil in DATEI schreiben und nicht in die Standardausgabe