imgur Questions

2

I am uploading images through the Imgur API (https://apidocs.imgur.com/) but I am getting a 'Too many Request' (err 429) even thought the previous request returned 'X-Ratelimit-Userremaining=1216'...
Burier asked 29/3, 2019 at 12:22

3

Solved

I am not developing a Android Application , I'm just writing some JAVA codes to support Imgur API services. public interface ImgurAPI { String server = "https://api.imgur.com"; String BASE6...
Nuno asked 30/3, 2017 at 7:43

2

Solved

All the examples I find online are of earlier versions of the Imgur API or non JS code all of which uses an API key which doesn't exist in the newer API. Instead you get a client_id and secret. Any...
Elvaelvah asked 6/8, 2013 at 19:8

2

I want to use Imgur API in a chrome extension. The authentification response from user's input is sent to a "redirect url" set up in my application profile on the imgur web page. How can I set th...
Rahn asked 22/12, 2015 at 16:37

5

I am using the imgur api to upload images via a node js app. I am converting images to base64 strings and sending them via Postman works great. I use node-fetch to make api calls. const fetch =...
Emanuelemanuela asked 8/12, 2018 at 16:20

3

Solved

I have an image on imgur. this image is displaying on any website except on localhost. What might be the problem? <img class="cover" src="https://i.sstatic.net/wqYLI.jpg" alt=""> Error:...
Culet asked 11/5, 2017 at 10:25

6

Solved

This Imgur api call returns a list containing both Gallery Image and Gallery Album classes represented in JSON. I can't see how to deserialize these automatically using Json.NET given that there i...
Pyrogenous asked 10/10, 2013 at 23:13

2

Solved

I'm trying to upload an image to imgur with js (browser) and get a CORS error: Access to XMLHttpRequest at 'https://api.imgur.com/3/upload' from origin 'http://localhost:3000' has been blocked by ...
Aubade asked 17/4, 2019 at 17:42

2

Solved

I've been making a react app and recently whenever I try to access images from imgur like so this.setState({ imgUrl: `https://i.imgur.com/${this.props.image.id}b.png`, imgBigUrl: `https://i.img...
Gilpin asked 10/5, 2017 at 14:28

0

I'm posting an image to imgur, via their API. This is a ReactJS app on TS. Here base64 is base64 string of the image, usually between 50 to 100kb const imgurApi = axios.create({ headers: { 'A...
Waistband asked 30/3, 2021 at 15:13

4

I've been teaching myself how to use react and meteor and I'm following a course on Udemy. The first project we have to do requires the imgur gallery endpoint which is : https://api.imgur.com/3/gal...
Alisealisen asked 7/11, 2018 at 13:54

1

Solved

I'm trying to upload a image using html form with imgur api(react). I've selected OAuth 2 authorization with a callback URL when registering api. The problem is that api is wont work with error 429...
Kean asked 14/2, 2021 at 11:47

2

Solved

I upload 12 image to imgur every half hour. But meet this issue. Imgur ERROR message: {'exception': [], 'code': 429, 'type': 'ImgurException', 'message': 'You are uploading too fast. Please wa...
Constance asked 18/3, 2018 at 12:27

3

Solved

I am able to upload anonymous images to imgur using the api like this: public static void UploadImage() { Image image = GetImage(); string base64 = Util.ImageToBase64(image); using (WebClient ...
Lipophilic asked 30/1, 2014 at 4:47

2

Solved

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_...
Pentathlon asked 27/5, 2016 at 14:49

3

Need your help... thanks to Greenshot a missclick is sufficient to post a picture online to Imgur. (I did...and now I want to delete it) the picture has been posted using anonymous mode. Because I...
Sew asked 24/9, 2016 at 0:22

1

This is my first time using this site, but I have exhausted most of my resources trying to find an answer. I'm teaching myself how to program and I'm stuck on my first API project. As the overall...
Indusium asked 24/8, 2017 at 17:46

2

Solved

I am trying to make an HTTP request to the Imgur API. I am trying to retrieve all images associated with the tag "cats." The url, according to the Imgur API is: https://api.imgur.com/3/gallery/t/ca...
Evaevacuant asked 4/1, 2016 at 2:13

4

Solved

import java.awt.List; import java.awt.image.BufferedImage; import java.io.BufferedReader; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.InputStreamReader; import java.ut...
Pedroza asked 30/6, 2013 at 0:30

0

I want to use HTTP request to post an image on Imgur. I used Postman first to make sure my API logic is correct. Here is my setting for Postman (myid is client id): This request succeeded, but...
Isidore asked 9/2, 2018 at 22:24

2

Solved

I get this in the console: Failed to load https://api.imgur.com/3/image: The 'Access-Control-Allow-Origin' header contains the invalid value ''. Origin 'https://example.org' is therefore not...
Corroboree asked 4/10, 2017 at 3:41

1

I'm using the https://api.imgur.com/3/image to upload images from JavaScript without oauth. Is it possible to see what images were uploaded recently using my Client-ID?
Stonybroke asked 11/6, 2016 at 8:8

1

I'm trying to write a program to upload an image to imgur and return the url. I want to start trying to play around with the api, but to register for my client id, one of the required fields is the...
Jealous asked 16/2, 2014 at 3:11

2

Solved

I tried to use jQuery Dropzone to upload an image to Imgur or any other domain but that's not working. This is my dropzone setup: $("div.dropzone").dropzone success: -> console.log arguments ...
Cajolery asked 21/8, 2014 at 13:29

1

Solved

I've noticed a lot of websites don't host images themselves, instead using something like Amazon's cloud service. As an example, Stack Overflow seems to use Imgur. Why is this? Why pay someone els...
Stagner asked 17/7, 2014 at 19:24

© 2022 - 2024 — McMap. All rights reserved.