データをサーバーから転送、もしくはサーバーへ転送します。 HTTP、FTP、POP3を含むほとんどのプロトコルをサポートしています。 詳しくはこちら: https://curl.se/docs/manpage.html
curl {{http://example.com}} --output {{ファイルパス}}
curl --remote-name {{http://example.com/filename}}
curl --fail --remote-name --location --continue-at - {{http://example.com/filename}}
application/x-www-form-urlencoded
型のPOSTリクエスト)。stdin
(標準入力) から読み込むには、--data @file_name
または --data @'-'
を使用する:curl --data {{'name=bob'}} {{http://example.com/form}}
curl --header {{'X-My-Header: 123'}} --request {{PUT}} {{http://example.com}}
curl --data {{'{"name":"bob"}'}} --header {{'Content-Type: application/json'}} {{http://example.com/users/1234}}
curl --user {{ユーザー名}} {{http://example.com}}
curl --cert {{client.pem}} --key {{key.pem}} --insecure {{https://example.com}}