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
要包含在要求中的自訂標頭,旗標可以指定多次
HTTP 方法(GET、POST、PUT、DELETE 等)
要包含在要求內文中的 HTTP 資料,或是 '@',其後面接著要從中讀取資料的檔名
伺服器錯誤傳回結束碼 22
在輸出中包括回應標頭
將 curl 主體寫入檔案,而非標準輸出