Hi I'm trying to figure out how to upload to imgur using java, does anyone have any experience with this kind of thing?

link|improve this question

43% accept rate
feedback

4 Answers

First of all, you're likely to be best off using the imgur api.

The documentation for uploading contains examples for Python and PHP that use cURL. It should be possible to adapt these to the Java bindings for cURL, or other HTTP libraries such as HttpClient.

link|improve this answer
feedback
  1. Get a developer key.

  2. Look at their Image Upload API.

  3. Use Apache Commons HttpClient to create a POST request and send:

    • 'image' - A binary image file, base64 encoded string, or URL.
    • 'key' - Your registered developer API key. Click here to register for a key.
link|improve this answer
If HttpClient is too overwhelmed, you could also just use java.net.URLConnection with setDoOutput(true) and write image=...&key=... to its OutputStream. – BalusC Nov 28 '09 at 22:40
feedback

You could try cURL. http://curl.haxx.se/libcurl/java/

link|improve this answer
feedback

I've used HtmlUnit with great success for this sort of tasks. Read the Submitting a form in the Getting started section, and you'll be done in no time.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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