26개의 명령어를 찾았습니다
예제:
$ curl https://api.example.com
예제:
$ curl -X POST https://api.example.com/users
예제:
$ curl -X PUT https://api.example.com/users/1
예제:
$ curl -X DELETE https://api.example.com/users/1
예제:
$ curl -H 'Content-Type: application/json' https://api.example.com
예제:
$ curl -d '{"name":"John"}' -H 'Content-Type: application/json' https://api.example.com
예제:
$ curl -i https://api.example.com
예제:
$ curl -v https://api.example.com
예제:
$ curl -s https://api.example.com
예제:
$ curl -O https://example.com/file.zip
예제:
$ curl -o myfile.zip https://example.com/file.zip
예제:
$ curl -L https://example.com/redirect
예제:
$ curl -C - -O https://example.com/largefile.zip
예제:
$ curl --limit-rate 200k -O https://example.com/file.zip
예제:
$ curl -F 'file=@document.pdf' https://api.example.com/upload
예제:
$ curl --data-binary @file.jpg https://api.example.com/upload
예제:
$ curl -T file.txt ftp://ftp.example.com/
예제:
$ curl -u username:password https://api.example.com
예제:
$ curl -H 'Authorization: Bearer token123' https://api.example.com
예제:
$ curl --oauth2-bearer token123 https://api.example.com
예제:
$ curl -k https://self-signed.example.com
예제:
$ curl --cert client.pem https://api.example.com
예제:
$ curl -w '%{time_total}\n' https://api.example.com
예제:
$ curl --connect-timeout 10 https://api.example.com
예제:
$ curl --retry 3 https://api.example.com
예제:
$ curl --proxy http://proxy.example.com:8080 https://api.example.com