curl - Cloud Foundry CLI Reference Guide


NOME

curl - Esegue una richiesta all'endpoint API di destinazione

UTILIZZO

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

OPZIONI

-H

Intestazioni personalizzate da includere nella richiesta, l'indicatore può essere specificato più volte

-X

Metodo HTTP (GET,POST,PUT,DELETE,ecc)

-d

Dati HTTP da includere nel corpo della richiesta oppure '@' seguito da un nome file da cui leggere i dati

--fail, -f

Degli errori server hanno restituito l'exit code 22

-i

Includi intestazioni di risposta nell'output

--output

Scrivi corpo curl nel FILE invece di stdout