Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I used the following code, to upload a image to my Facebook wall.

    try {
    bitmap=BitmapFactory.decodeFile(imagePostion);
    HttpClient httpClient = new DefaultHttpClient();
    HttpContext localContext = new BasicHttpContext();
    HttpPost httpPost = new HttpPost(
   "https://graph.facebook.com/me/photos?access_token="+ a);
    MultipartEntity entity = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);
    ByteArrayOutputStream bos = new ByteArrayOutputStream();
    bitmap.compress(CompressFormat.PNG, 100, bos);
    byte[] data = bos.toByteArray();
    entity.addPart("source", new ByteArrayBody(data, imagePostion));
    httpPost.setEntity(entity);
    HttpResponse response = httpClient.execute(httpPost,localContext);
    Log.v("Response !!!!!!!!",response+"");
    } catch (UnsupportedEncodingException e) {
    // TODO Auto-generated catch block
    e.printStackTrace()
    } catch (ClientProtocolException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    } catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    }

And I got null pointer exception at this line

ByteArrayOutputStream bos = new ByteArrayOutputStream();

Need help.

share|improve this question
a is my access token, imagePositon is the url containing the image. – Manikandan Jun 6 '12 at 17:39

2 Answers

Here is no image bitmap to upload it. Create an upload image BitMap.

add this Line

bitmap.compress(CompressFormat.JPEG, 100, bos);

after

ByteArrayOutputStream bos = new ByteArrayOutputStream();

share|improve this answer
I have that line in my code. just a edit is required – Manikandan Jun 6 '12 at 17:28
up vote 0 down vote accepted

Finally I get it work. The MultipartEntity works in Android 2.1 onwards. I had tried in 1.6. That is why I got that error.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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