im new to android,

i need help in using, imgur's API, to upload a photo and obviously retrieve a link.

IMGUR API: http://api.imgur.com/resources_anon

Im new to api's so bare with me.

I'm able to get the URI for my image required to be uploaded but how can i implement the api above, ive downloaded mime4j and httpmime and added them to the libraries, but i cant seem to understand how to use them,

I looked at this but its confused me : Sending images using Http Post

if anyone could give me an example it would help very much. Thank you

link|improve this question

78% accept rate
Try looking at the Java example on the imgur website - api.imgur.com/examples#uploading_java – hrickards Aug 18 '11 at 17:52
IMAGE.IO doesnt exist in android, so how would i get around that?? – asd2005 Aug 19 '11 at 2:30
Assuming you're storing your image using Bitmap, take a look at the first answer at stackoverflow.com/questions/6344694/… – hrickards Aug 19 '11 at 7:53
okay so by using the first answer how do i progress that to do what i need to? – asd2005 Aug 19 '11 at 12:56
Have a look at my answer below – hrickards Aug 19 '11 at 13:12
feedback

1 Answer

up vote 2 down vote accepted

Just from having a quick look at imgur and this question, I've come up with (pretty much just combined the two) the following. Let me know if it doesn't work.

Bitmap bitmap = yourBitmapHere;

// Creates Byte Array from picture
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.PNG, 100, baos); // Not sure whether this should be jpeg or png, try both and see which works best
URL url = new URL("http://api.imgur.com/2/upload");

//encodes picture with Base64 and inserts api key
String data = URLEncoder.encode("image", "UTF-8") + "=" + URLEncoder.encode(Base64.encode(baos.toByteArray(), Base64.DEFAULT).toString(), "UTF-8");
data += "&" + URLEncoder.encode("key", "UTF-8") + "=" + URLEncoder.encode(YOUR_API_KEY, "UTF-8");

// opens connection and sends data
URLConnection conn = url.openConnection();
conn.setDoOutput(true);
OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
wr.write(data);
wr.flush();

Edit: It seems we need to pass Base64.DEFAULT as the second option to Base64.encode. Updated the example above.

Edit 2: Can you use the following code, based upon the oracle site, and report back what it outputs:

BufferedReader in = new BufferedReader(
                            new InputStreamReader(
                            conn.getInputStream()));

String inputLine;

while ((inputLine = ic.readLine()) != null) 
    System.out.println(inputLine);
in.close();
link|improve this answer
i'll test it now, thank you – asd2005 Aug 19 '11 at 13:29
the part, "URLEncoder.encode(Base64.encode(baos.toByteArray()), "UTF-8");" comes up with a problem, Base64.encode(byte[],int) is not applicable for the arguement (byte[]) – asd2005 Aug 19 '11 at 13:45
Ok. I've updated the code above, but it seems the solution is to pass in Base64.DEFAULT as a second argument to Base64.encode. – hrickards Aug 19 '11 at 14:16
yeah i tried that straight away, but then it causes a problem with the "URLEncoder.encode" part of "URLEncoder.encode(Base64.encode(baos2.toByteArray()" Saying that encode requires String String, not Byte String :S – asd2005 Aug 19 '11 at 14:25
note, im using "baos2" as the name instead of baos, incase you think its an error – asd2005 Aug 19 '11 at 14:27
show 13 more comments
feedback

Your Answer

 
or
required, but never shown

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