0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

curlでPOSTする

Posted at

いつも忘れるので備忘として記録。

curl -v --proxy Proxy_IP:8080 --request POST \
  --url 'https://hogehoge' \
  --header 'accept: application/json' \
  --data "{"requestId":"1234567890"}"

リクエスト/レスポンスの情報を表示したい

-v をつけましょう。

ヘッダーを指定したい

--headerをつけましょう。省略系**-H**でも可。

データを指定をしたい

--dataをつけましょう。省略系**-d**でも可。

改行したい

**/**をつけましょう。

0
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?