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

stdout 대신 FILE에 curl 본문 쓰기