curl - Cloud Foundry CLI Reference Guide


名前

curl - ターゲットの API エンドポイントへの要求を実行します

使用法

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

オプション

-H

要求に組み込むカスタム・ヘッダー、フラグは何度でも指定できます

-X

HTTP メソッド (GET、POST、PUT、DELETE など)

-d

要求本体に組み込む HTTP データ、または '@' の後にデータの読み取り元のファイル名を続けたもの

--fail, -f

サーバー・エラーによって終了コード 22 が返されます

-i

応答ヘッダーを出力に組み込みます

--output

curl 本体を stdout ではなく FILE に書き込みます