curl - Cloud Foundry CLI Reference Guide


NAME

curl - Führt eine Anforderung an den anvisierten API-Endpunkt durch

VERWENDUNG

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.

EXAMPLES

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

Optionen

-H

Angepasste Header, die in die Anforderung einbezogen werden sollen. Das Flag kann mehrfach angegeben werden

-X

HTTP-Methode (GET, POST, PUT, DELETE etc.)

-d

In den Anforderungshauptteil zu integrierende HTTP-Daten oder '@' gefolgt von dem Namen einer Datei, aus der die Daten gelesen werden sollen

--fail, -f

Serverfehler geben Exit-Code 22 zurück.

-i

Antwortheader in Ausgabe einbeziehen

--output

cURL-Hauptteil in DATEI schreiben und nicht in die Standardausgabe