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 主體寫入檔案,而非標準輸出