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