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가 리턴되었습니다.
출력에 응답 헤더 포함
stdout 대신 FILE에 curl 본문 쓰기