572 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
104
views
Imgur API says I have credits until I try to submit a request - Userremaining stuck at 0, 429 errors
There are a couple of unresolved questions about the same issue:
Imgur API - Getting "Too many Request" error even though 'X-Ratelimit-Userremaining' is not 0
imgur API: ...
1
vote
0
answers
125
views
Open PNG Imgur images via link
I want to read an image I uploaded on Imgur (I have the image link saved in a database).
My code is as follows:
ImageFile.LOAD_TRUNCATED_IMAGES = True
card : Optional[Card] = await interaction.client....
0
votes
0
answers
107
views
Creating an Imgur album with images in one request returns an empty album – What am I doing wrong?
I'm trying to use the Imgur API to create an album and have images attached in one request using my authenticated account. I first upload several images (which returns their image IDs), then I call my ...
1
vote
0
answers
62
views
exception error when using imgur on flutter web
i am implementing image upload in my app. i want to use imgur's api. i got the code from the postman collection in their docs. but i am getting - DioException [connection error]: The connection ...
1
vote
1
answer
2k
views
imgurpython's create_album fails
Caveat: Yes, I know that imgpurpython is not maintained, this has however worked for me quite recently.
I have a simple python3 application that uses the OAuth authorization to call into imgur's API. ...
0
votes
0
answers
216
views
Why is my image hosted on Imgur not loading on some mobile devices?
Clearly explain your issue, for example:
I’m working on a project in plain HTML, CSS, and JavaScript. I use an image hosted on Imgur (https://i.imgur.com/JiwDusX.jpeg) as the background for a canvas.
...
0
votes
0
answers
105
views
too many request issue, API image upload
I copied the code from the docs imgur tutorial:
public static async Task Main(string[] args)
{
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post,...
0
votes
1
answer
433
views
Imgur uploads via API in Python, previously working, suddenly failing with SSL error "EOF occurred in violation of protocol"
I have an application using the ImgurPython library to help me upload albums in bulk with fewer headaches than the web UI causes. It's been working well for me for a few weeks, but recently stopped. ...
0
votes
2
answers
1k
views
i cant get new access token on postman
I followed the instructions of imgur api and the video https://www.youtube.com/watch?v=anfNgyplDjI&t=94s, but when I get a new access token, the same error appears on postman
{"data":{&...
1
vote
0
answers
334
views
Imgur error 429: Only when trying to access image from Django application
I have an active Django project where in a module I am uploading images to the Imgur server and retrieving them as a background image for generating a PDF using the direct link for the images (https://...
1
vote
1
answer
207
views
How to add an uploaded image to my own ImgUr Album
I have created an application on ImgUr and recieved the ClientID and ClientSecret.
I know my album id for example: xbvhXo(not a real id)
I want to upload an image to my album.
What I have done:
I ...
0
votes
1
answer
47
views
How to use ImgUr npm package to add images to an album
I'm using the ImgUr NPM library to upload my images.
After that I would like to add the uploaded images to an album, say 'HelloWorld'.
Here is my code:
export async function uploadToImgUr(files: ...
0
votes
0
answers
140
views
Why does uploading image to imgur get 401 error code?
This is my code in frontend but I when I perform upload2Imgur function, the result I receive is:
{ "data": { "error": "Authentication required", "request": &...
0
votes
0
answers
112
views
Deletehash api imgur
How do I get the deletehash of an image that I already uploaded, to later delete it using the imgur api? I am using livewire from Laravel.
1
vote
1
answer
2k
views
Why imgur adds white background to some png images, and to others not with Alamofire and Swift?
This is how I simply upload images to Imgur using Alamofire and Swift:
let url = URL(string: "https://api.imgur.com/3/upload")!
private var headers: [String: String] {
["X-Token&...