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 主体写入文件,而不写入 stdout