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
2
votes
1 answer

Uploading a photo via imgur on android programatically

I need help in using, imgur's API, to upload a photo and obviously retrieve a link. IMGUR API: http://api.imgur.com/resources_anon I'm able to get the URI for my image required to be uploaded but how can I implement the api above, I've downloaded…
asd2005
  • 315
  • 2
  • 5
  • 12
2
votes
0 answers

Can't use Imgur API on localhost: 429 errors

I am consistently getting a 429 and this error: Imgur is temporarily over capacity. Please try again later. The Imgur status page indicates "All Systems Operational" and no recent incidents. Curiously, I don't get this error when I change from…
Arcanist
  • 46
  • 6
2
votes
1 answer

Imgur ID match using Regex in ASP.NET C#

I am pretty inexperienced when it comes to regular expressions and wondered if anyone can help me achieve the following. I need a regular expression that will validate if a certain URL is a valid imgur image and return the ID of the image. Match…
tribe84
  • 5,432
  • 5
  • 28
  • 30
2
votes
1 answer

three js, WebGLRenderer image quality drops on safari

Image quality is fine on chrome but when I run it on safari quality drops. It renders blurry as below. safari quality and chrome quality I checked three.js examples on safari, but the quality is fine, not blurred. And checked the their snippets as…
firefly
  • 876
  • 2
  • 15
  • 42
2
votes
1 answer

Angular produces 429 Status Code for Get Request, cURL, Python and fetch work just fine

I'm working on a simple enough website and I need to perform a get request to Imgur's API. Using the following works fine: curl -v --location --request GET 'https://api.imgur.com/3/album/WFWR56Z/images' \ --header 'Authorization: Client-ID…
Doogyb
  • 63
  • 5
2
votes
1 answer

Can no longer upload images to imgur from localhost

I have a react app where I upload images to imgur like: const formData = new FormData(); formData.append('image', file); return fetch('https://api.imgur.com/3/image/', { method: 'POST', headers: { Authorization: 'Client-ID…
abc
  • 1,141
  • 12
  • 29
2
votes
0 answers

Imgur API Too many requests (bug?)

I have an application that uses the imgur api to create images. As of Jan 31 it is failing. I have not made any updates to the application since may and the api has been working fine for over a year prior to this. When I check GET…
Mark G
  • 21
  • 1
2
votes
0 answers

React Native Expo app : can not POST image to Imgur with Axios

I would like to upload a picture from Android Virtual Device to Imgur I already saw this link. With ImagePicker.launchImageLibraryAsync() I get the file : export async function pickImage() { let result = await…
Frankie
  • 181
  • 1
  • 1
  • 13
2
votes
0 answers

Video uploaded via API(v3) not attach to my account in Imgur

Code Snippet: Here is my code snippet: function uploadByCurl($uploadFilePath, $accessToken){ $ch = curl_init(); $mimeType = mime_content_type($uploadFilePath); $fileType = ''; if(strpos($mimeType, 'image')!==false){ $fileType…
Willis
  • 599
  • 3
  • 25
2
votes
1 answer

Error upload to imgur (malformed auth header)

I'm trying to use Imgur to upload some images in an angular web app, but keep getting "Malformed auth header", does anybody know how to fix this error? async uploadImage(imageFile: File, infoObject: {}, categoryId) { const formData = new…
2
votes
1 answer

404 when calling Imgur OAuth2 API

First attempt at using the Imgur API for OAuth2 authentication. I have a Client ID and Client Secret from https://api.imgur.com/oauth2/addclient. The URL that is being called from my Vue application looks…
2
votes
0 answers

Imgur API: all requests failing with 429 Unknown (this is their code for over rate limit)

Starting yesterday morning between 10-11am, Imgur started failing all API requests with 429 Unknown. This is their code for being over the rate limit. It happens even with a freshly created app, so I am definitely not breaking any rate limit. (I…
felwithe
  • 2,683
  • 2
  • 23
  • 38
2
votes
1 answer

Get the original image from Imgur URLs with "maxwidth", "shape", and "fidelity"

Imgur doesn't seem to give out the original image for some images, for example, https://i.stack.imgur.com/P4cLI.jpg?maxwidth=123456789&shape=thumb&fidelity=high The problem is that I bet "shape=thumb" and "fidelity=high" are downgrading the original…
Rublacava
  • 414
  • 1
  • 4
  • 16
2
votes
0 answers

Imgur API: corrective action when x-post-rate-limit-reset is -1?

I see these response headers when I try to upload an image using the Imgur API: x-post-rate-limit-limit: 1250 x-post-rate-limit-remaining: 0 x-post-rate-limit-reset: -1 The docs describe x-post-rate-limit-reset like this: X-Post-Rate-Limit-Limit: …
user100464
  • 17,331
  • 7
  • 32
  • 40
2
votes
0 answers

Imgur uploaded image goes hidden. How to make it public directly after upload?

When I upload an image to Imgur, it goes to my account; even in the album I specify but stays hidden. I went to https://apidocs.imgur.com/ It makes me open postman, I did tests. I selected "POST IMAGE UPLOAD" I insert in Header section Authorization…
Jintor
  • 607
  • 8
  • 32