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

Curlコマンドのメモ

Posted at

アプリ開発をしている時、そのアプリ以外でAPIを叩くことがありましたので、メモを残す。以下はCurlでAPIを叩いた時のコマンドになる。

curl [URL] -H [ヘッダー情報] | jq

[URL]に接続するURLを記述し、[ヘッダー情報]にトークン情報などをのせる。jqコマンドを使用すれば、レスポンスのJSONが整理され、見やすくなる。

curl -O [URL.png] -H [ヘッダー情報]

画像ファイルなどアクセス先のデータをダウンロードすることがある場合は上記のように-Oオプションを記述する。
アップロードは-T、認証は-u、ボディ情報は-dオプションを使用する。

参考

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