Questions tagged [imgur]

Imgur is a free and popular image hosting service that does not require registration to use.

Imgur is a free and popular image hosting service that does not require registration to use.

572 questions
4
votes
3 answers

Imgur embed does not show image in Angular web app

Embedded Imgur image does not appear. Sometimes, it appears briefly, then disappears. This page does not contain the image. It only shows a blank. Looking at the source, it follows the same Imgur code. It also has embed.js at the bottom of the…
Jonas Arcangel
  • 2,085
  • 11
  • 55
  • 85
4
votes
2 answers

How to upload video from the API imgur

I'm using imgur API and I have several question, what is the size limit for uploading a .gif ? I read everywhere the size limit of picture is 10Mb and gif are 20Mb but when I try to upload a gif of 11Mb with the API it tells me it's too heavy. Also…
Gaeguri
  • 455
  • 4
  • 19
4
votes
1 answer

Imgur API - commercial charge for requests

I want to use Imgur API for commercial By the following document Imgur API: Pricing & Cost (imgur) | RapidAPI https://rapidapi.com/imgur/api/imgur-9/pricing For PRO requests 600000 / month uploads 60000 / month "requests 600000 / month" means the…
Zenki Wu
  • 63
  • 1
  • 9
4
votes
0 answers

Upload image to imgur without exposing client_id, but directly from browser

OK, I want to start using imgur for my new web app (on all browsers and my server) and will submit anonymous images for paid storage, but from the user's browser to minimize loading on my server. Almost all the software runs in javascript…
Larry Beyl
  • 41
  • 1
4
votes
2 answers

Postman "Could not complete OAuth 2.0 login" when using Imgur API

Here is what Imgur says I should do Here is what I am doing And after I hit Request Token I am redirected to give access And After I give access Any suggestions on how I could fix this?
Pavlin Petkov
  • 1,022
  • 3
  • 17
  • 38
4
votes
1 answer

Using Imgur API 3 to upload an image reports that I'm not the owner of the album

I created an Imgur account and acquired my client ID and secret key before creating an album. My goal was to write in a test environment before integrating it into my application. Below is final version of the code I have used up until now: string…
Andy Evans
  • 6,997
  • 18
  • 72
  • 118
4
votes
2 answers

How do you get access_token and refresh_token from Imgur?

Project I am using: ImgurNet from nuget (source: https://github.com/0xdeafcafe/ImgurNet) It seems like it needs all those parameters: { "client_id": "Insert your imgur client_id here", "client_secret": "Insert your imgur client_secret…
Xavier Peña
  • 7,399
  • 9
  • 57
  • 99
4
votes
1 answer

Upload file to imgur using php and retrieve the link

I have a HTML form with a file upload button. I want the user to be able to select an image and submit the form, then the server should upload the file to imgur using PHP and retrieve the direct link of that image (meaning the URL should end with…
Adib
  • 359
  • 1
  • 6
  • 16
4
votes
1 answer

Imgur OAuth2 Authentication and Upload C#

I have created a C# Windows Form Program that enables the user to drag and drop an image, pasting the url to that image into a text box. I now have to do the API side of this and authenticate with Imgur. Since I will be the only one using this…
user4191887
  • 277
  • 3
  • 15
4
votes
1 answer

Get cURL response headers as well as response body

I'm using the Imgur API to upload images. They have detailed in their API docs that each request (when I upload an image via their API) also has response headers, which will tell me how much credit the account has left. I need to return the HTTP…
James
  • 1,088
  • 3
  • 11
  • 29
4
votes
1 answer

Getting image data using the Imgur API and PHP

I'm quite new to php and I'm trying to use the imgur API (My code is based on several tutorials) What I'm trying to do is get an image from imgur display it on a web page. So I'm using this code '; $ch = curl_init(); …
lxkmxl
  • 81
  • 1
  • 7
4
votes
1 answer

How can I get imgur.com album images using ajax request

I used this code : (function($){ var albumID = 'NNbeO'; var albumAPI = "https://api.imgur.com/3/album/" + albumID + "/images"; $.ajax({ url: albumAPI, headers:{ 'Authorization':'xxxxxxxx…
Arif
  • 6,094
  • 4
  • 49
  • 81
4
votes
1 answer

Cannot get imgur v3 api request to authorize using curl or other bash utility

I'm trying to scrape some public data from imgur.com using the v3 imgur api but whenever I make a request using curl I'm getting a 401. This is how I'm calling the API (using this example from the example python app) - curl -F…
Dave
  • 6,141
  • 2
  • 38
  • 65
4
votes
2 answers

Get image using imgur API in Ruby (on Rails)

I'm trying to pull an image from imgur using the provided API with Ruby 2.0.0 and Rails 4.0.0. I've tried constructing an http request in various ways as listed in the Ruby 2.0.0 docs to no avail. Here's the code: require 'net/http' require…
Pedro Cattori
  • 2,735
  • 1
  • 25
  • 43
4
votes
1 answer

Upload a canvas image to imgur (api v3) with javascript

I'm building a funny Chrome-Experiment. The Mustache Mirror! http://sjoerddijkstra.nl/cam/ I want to use the Imgur API V3 to upload an image from te canvas to Imgur and then show the link, but I really don't know how. All the working examples I find…