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", "http://example.com/example.jpg"))]

c.setopt(c.URL, "http://imgur.com/api/upload.xml")
c.setopt(c.HTTPPOST, values)

c.perform()
c.close()

I'd like a bit of guidance on how to do this in C#. For instance, I'm lost on what these "values" would be in C#, how would I even declare them?

I'm not familiar with cURL at all, so that might be holding me back from translating a bit.

Help me Obi-wan. You're my only hope. /click

link|improve this question

That python code appears to be using CURL. Look up the documentation for the C# version of the library. – Anon. Jan 11 '10 at 2:29
The documentation for the library is horrible. Also, when trying to add the .dll file to my solution in Visual C# Express 2010 I get an error that the file isn't a Proper COM Component. – Sergio Tapia Jan 11 '10 at 18:19
feedback

1 Answer

up vote 1 down vote accepted

You just need to perform an HTTP POST, e.g. this code with a "parameters" string of key=YOUR_API_KEY&image=http://example.com/example.jpg or the like.

link|improve this answer
I'm a bit confused do you literally put that string as the method's parameter? – Sergio Tapia Jan 11 '10 at 2:51
dopost(@"http://foo.bar", @"key=YOUR_API_KEY&image=http://example.com/example.jpg") or the like (you don't need the @ signs here, but as you don't want escape sequences processed, I guess you might as well use them;-). – Alex Martelli Jan 11 '10 at 2:56
feedback

Your Answer

 
or
required, but never shown

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