Skip to content

Instantly share code, notes, and snippets.

View addevin's full-sized avatar

AdDev addevin

View GitHub Profile
@perudesarrollo
perudesarrollo / upload-imgur-api-v3.php
Last active June 22, 2021 10:42
using imgur api v3 to upload images
$client_id = 'xxxxxxxx';
$file = file_get_contents("test-image.png");
$url = 'https://api.imgur.com/3/image.json';
$headers = array("Authorization: Client-ID $client_id");
$pvars = array('image' => base64_encode($file));
$curl = curl_init();