Questions tagged [imgur]

Imgur stands out as a top choice for hosting images without needing users to create an account.

Use Vue and axios to retrieve images from imgur

When attempting to retrieve all images from the Galleries template, I encounter the error/warning message saying: "Property "token" was accessed during render but is not defined on instance". Instead of displaying the images, I see: <img src="function ...

FireFox is showing inconsistencies in response to the jQuery GET request, while Chrome is responding correctly

$.ajax({ url: 'https://api.imgur.com/3/album/' + sharedAlbumID, type: 'GET', beforeSend: function(xhr){xhr.setRequestHeader('Authorization', 'Client-ID '+imgurClientID);}, success: function(resp) { var dataLink = 'http://i.imgur.com ...

What is the mechanism behind image pasting in Firefox's imgur integration?

Start by launching an image editing software and make a copy of any desired image. Avoid copying directly from a web browser as I will explain the reason later on. Navigate to "http://imgur.com" using Firefox. To paste the copied image, simply press Ctrl+V ...

How to fetch clear text comments from a post using the Imgur API in Python 2.7?

client = ImgurClient(client_id, client_secret, access_token, refresh_token) for item in client.gallery_item_comments("c1SN8", sort='best'): print item I have this code snippet above. My goal is to retrieve a list of comment ids from the func ...