0
2

Imgur APIで画像をアップロードしてみた

Posted at

See the Pen Imgur API Upload by John Doe (@04) on CodePen.

簡単にアップロードできます

await fetch("https://api.imgur.com/3/upload", {
    method: "POST",
    headers: {
        Authorization: "Client-ID aca6d2502f5bfd8",
    },
    body: new FormData(document.forms[0]),
});

API仕様書

See the Pen Imgur API Upload by John Doe (@04) on CodePen.

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