「Mac/インストール/curl」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==インストール== 既に入ってる ==使い方== ttpsはhttpsへ <pre> curl ttps://example.com/ curl --location 'ttps://example.com/ # 保存したいとき curl...」) |
(→使い方) |
||
(同じ利用者による、間の3版が非表示) | |||
行9: | 行9: | ||
# 保存したいとき | # 保存したいとき | ||
curl --location 'ttps://example.com/' > /tmp/index.html | curl --location 'ttps://example.com/' > /tmp/index.html | ||
− | + | # ヘッダーを加えたいとき | |
+ | curl --location 'ttp://example/' --header 'Content-Type: application/json' | ||
+ | # 改行したいとき | ||
+ | curl --location 'ttp://example/' \ | ||
+ | --header 'Content-Type: application/json' | ||
+ | # GETやPOST | ||
+ | curl -X GET 'ttp://example/' | ||
+ | curl -X POST -d "name=taro&age=20" 'ttp://example/' | ||
</pre> | </pre> |
2023年8月3日 (木) 18:26時点における最新版
インストール
既に入ってる
使い方
ttpsはhttpsへ
curl ttps://example.com/ curl --location 'ttps://example.com/ # 保存したいとき curl --location 'ttps://example.com/' > /tmp/index.html # ヘッダーを加えたいとき curl --location 'ttp://example/' --header 'Content-Type: application/json' # 改行したいとき curl --location 'ttp://example/' \ --header 'Content-Type: application/json' # GETやPOST curl -X GET 'ttp://example/' curl -X POST -d "name=taro&age=20" 'ttp://example/'