I am trying to use sideloading with imgur's api.

$.get("http://api.imgur.com/2/upload.json?", {
    url: www.example.com/blah.jpg
},function(response){
        var url = response.upload.links.original;
        var thumb_url = response.upload.links.small_square;
        uploadSuccess(response,url,thumb_url);
});

However, I am getting a 302 found:

http://api.imgur.com/2/upload.json?&url=http://www.example.com/blah.jpg

and then it redirects to:

http://imgur.com/upload?url=http://www.example.com/blah.jpg

which then just loads forever.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I changed the 'url' parameter to 'image' and that seemed to solve this issue.

link|improve this answer
can you give more detail – deltree Feb 9 at 0:21
awesome it worked! to @deltree, just change it so it says image: www.example.com/blah.jpg. Also, you need to provide the api key as well – Razor Storm Feb 9 at 3:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.