2
0

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 3 years have passed since last update.

curlコマンドとは?

Posted at

#curlコマンドとは?何ができるのか?
手軽に、通信の中身を表示するコマンドです。
通信とは、http通信のことでインターネットを使い、webサイトを見るときに行われている通信です。
webサイトを見ているときは、以下のように、クライアントのPCとサーバーでの情報のやりとりが行われています。
クライアント側からはhttpリクエストが送られ、サーバー側からはhttpレスポンスが返ってきます。
スクリーンショット 2020-08-22 11.02.14.jpg

curlはこのhttpリクエストをサーバーに送り、返ってきたhttpレスポンスを表示するコマンドということです!

#curlコマンドを試してみる

curl http://www.google.com/
とコマンドを打つと、、
スクリーンショット 2020-08-22 11.14.43.jpg
こんな感じで、googleのhtmlが表示されました。
##参考記事
https://qiita.com/yasuhiroki/items/a569d3371a66e365316f
https://itsakura.com/network-http-get-post

2
0
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
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?