Uploading image to imgur.com using code below returns http 400 error code. My developer key is correct and I tried different image formats with sizes upto 70 kb. I also tried code example for c# given at http://api.imgur.com/examples but it also gives http 400. What might be the problem?

public XDocument Upload(string imageAsBase64String)
{
    XDocument result = null;
    using (var webClient = new WebClient())
    {
        var values = new NameValueCollection
        {
            { "key", key },
            { "image", imageAsBase64String },
            { "type", "base64" },
        };
        byte[] response = webClient.UploadValues("http://api.imgur.com/2/upload.xml", "POST", values);
        result = XDocument.Load(new MemoryStream(response));
    }
    return result;
}

EDIT: This is an ASP.NET MVC application and caller controller action is:

[HttpPost]
public ActionResult UploadImage(HttpPostedFileBase uploadFile)
{
    if (uploadFile.ContentLength > 0)
    {
        var imgService = new ImgUrImageService();
        byte[] fileBytes = new byte[uploadFile.InputStream.Length];
        Int64 byteCount = uploadFile.InputStream.Read(fileBytes, 0, (int)uploadFile.InputStream.Length);
        uploadFile.InputStream.Close();
        string fileContent = Convert.ToBase64String(fileBytes, 0, fileBytes.Length);
        var response = imgService.Upload(fileContent);
    }
    return View();
}
link|improve this question

75% accept rate
Did you ever get this working? – theChrisKent Dec 13 '10 at 15:37
No it is still the same. It is a side project that I'm working on at home. I think I'll look to the other image services. – arch stanton Dec 13 '10 at 17:47
feedback

2 Answers

up vote 1 down vote accepted

Ok I found the reason. A proxy setting (for Fiddler) in my web.config file was causing the issue. Removing it solved the problem and my another issue too (related to recaptcha). Code is working like a charm.

link|improve this answer
feedback

If you modify your code to this:

        public XDocument Upload(string imageAsBase64String)
        {
            XDocument result = null;
            using (var webClient = new WebClient())
            {
                var values = new NameValueCollection
                    {
                        { "key", key },
                        { "image", imageAsBase64String }
                    };
                byte[] response = webClient.UploadValues("http://api.imgur.com/2/upload.xml", "POST", values);
                result = XDocument.Load(System.Xml.XmlReader.Create(new MemoryStream(response)));
            }
            return result;
        }

Everything will work fine with an ANONYMOUS API key. To use the authenticated API you will have to create an OAuth token using your Consumer Key and Consumer Secret.

Imgur has some more information about the specific endpoints needed and some links to additional help here: http://api.imgur.com/auth

Your conversion code looks mostly fine, I have changed it slightly:

    [HttpPost]
    public ActionResult UploadImage(HttpPostedFile uploadFile)
    {
        if (uploadFile.ContentLength > 0)
        {
            var imgService = new ImgUrImageService();
            byte[] fileBytes = new byte[uploadFile.ContentLength];
            uploadFile.InputStream.Read(fileBytes, 0, fileBytes.Length);
            uploadFile.InputStream.Close();
            string fileContent = Convert.ToBase64String(fileBytes);
            var response = imgService.Upload(fileContent);
        }
        return View();
    }

In your original upload code you add an extra value of type, are you still adding this or did you switch your code to match my changed code above? I see no reason to add this value and I don't see where it's supported with imgur.

link|improve this answer
Chris thanks for the answer. This code still returns code 400 using my developer key. Upload is anonymous API method. So my developer key should be sufficient. Isn't my developer key also the anonymous key? Could it be something wrong with my local machine? – arch stanton Dec 5 '10 at 11:53
I tried my code using your key and it is still the same. I also edited my question and added conversion code. – arch stanton Dec 5 '10 at 16:51
I've updated my answer to address the conversion – theChrisKent Dec 6 '10 at 0:54
feedback

Your Answer

 
or
required, but never shown

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