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

imgur images not showing in account

I create an image gallery application using PHP.For hosting i used imgur, its working fine on my site. I can upload and see the images from my application but problem is when i login my imgur account i can't see any images there. HTML code
0
votes
1 answer

Imgur, bad request on load image

I have written a code that allows me to display the image once selected by the form, and then load it automatically on imgur with api. Works only the function to display the image , when I send upload's request , it returns error 400. Code to load…
Edoardo
  • 11
  • 4
0
votes
1 answer

Quick - Get multiple BBCode links from imgur?

There used to be a way to get a copy-and-paste link of all the [img] codes from an album on imgur, did they remove that? If not, how do you get all the [img]s besides manually doing it? Example; [IMG]http://i.imgur.com/photohere.png[/IMG]
0
votes
1 answer

How to upload image to imgur as a specific user?

I am trying to upload images to imgur, and I found the way to do it below: img = requests.post( 'https://api.imgur.com/3/upload.json', headers = {'Authorization': 'Client-ID '}, data = { 'key': '', …
thisisdee
  • 878
  • 3
  • 16
  • 41
0
votes
1 answer

Facebook social graph still fetching old values and not the updated ones

I made a new blog post on my website and provided an image for SocialGraph tag: The image was hosted on imgur, and posted it on the web. After few minutes I decided to…
Maven
  • 14,587
  • 42
  • 113
  • 174
0
votes
2 answers

Display an Image from imgur

I was able to upload a picture in Imgur and to get the link using example given in the API site. What I can't do is retrieve Bitmap or Drawable from URL. And I find no documentation about it. URL url= "http://imgur.com/1awAsRh" Bitmap mPic =…
Juliatzin
  • 18,455
  • 40
  • 166
  • 325
0
votes
4 answers

Grabbing filename from image URL

I'm making a pretty basic Chrome extension that I use primarily for personal use and use between friends. In any case, I essentially have a URL that looks like this: i.imgur.com/abcd123.png or imgur.com/a2b3c78 or even i.imgur.com/herp321.png?1 The…
Jtaylorapps
  • 5,680
  • 8
  • 40
  • 56
0
votes
1 answer

How to upload images using an API Key that gives you permission to upload? [Python source code included]

The documentation of the API shows source code on how to accomplish this in Python: #!/usr/bin/python import pycurl c = pycurl.Curl() values = [ ("key", "YOUR_API_KEY"), ("image", (c.FORM_FILE, "file.png"))] # OR: ("image",…
Sergio Tapia
  • 40,006
  • 76
  • 183
  • 254
0
votes
0 answers

Upload Multiple Files Through Imgur

I'm using this code to upload multiple files to imgur at once but its not working. It doesn't even trigger at all;
Send these files:
user2854563
  • 268
  • 1
  • 11
  • 25
0
votes
2 answers

Get remote image thumbnails and links with php

Hi I am trying to get the thumbnails from this site http://imgur.com/gallery to display on my php page and I want the thumbnails to be clickable so they direct the user to the imgur comment page that has the preview of the image. Do I use cURL to…
user3000742
0
votes
1 answer

PHP: Uploading multiple images to imgur at once

I've got the following code and it works perfectly fine for uploading one image to Imgur using their API: $client_id = $myClientId; $file = file_get_contents($_FILES["file"]["tmp_name"]); $url = 'https://api.imgur.com/3/image.json'; …
Allen S
  • 3,471
  • 4
  • 34
  • 46
0
votes
2 answers

Tampermonkey script for Imgur

I'm wanting to make what should be a quick comment upvote script for Imgur. What I'd like to do is insert a button while browsing the imgur gallery "http://imgur.com/gallery/*" that will upvote every comment on that particular page. It should be as…
Armin
  • 1,736
  • 4
  • 19
  • 35
0
votes
1 answer

Imgur API return "undefined"

I've the following js code to upload image to imgur using Auth.