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 want to post a message on my wall, adding a PNG image (not a URL), as shown below. Everything works except that no image is posted. Is this even supported? Is there a size limit?

Bundle params = new Bundle();
params.putString("access_token", session.getAccessToken());
params.putString("description", message);
params.putString("caption", caption);
params.putString("name", name);
params.putString("link", link);

// Does not work:
// params.putByteArray("photo", pngByteArray);
// params.putByteArray("picture", pngByteArray);

WebDialog feedDialog = (new WebDialog.FeedDialogBuilder(this,
   Session.getActiveSession(),
   params)) /* ... */

As you can see, I'm using the FeedDialogBuilder class to let the user confirm the wall post.

share|improve this question
what are you getting in response with sending byteArray code as a "picture" parameter? – Rushabh Patel Jan 2 at 19:19

1 Answer

up vote 0 down vote accepted

This code is working for me:

Bundle params = new Bundle();
params.putString("access_token", session.getAccessToken());
params.putString("description", message);
params.putString("caption", caption);
params.putString("name", name);
bundle.putByteArray("picture", byte);
String response = facebook.request("me/photos",bundle,"POST");

hope it will help you.

share|improve this answer
Does that fire up the confirmation dialog? (See FeedDialogBuilder) – l33t Jan 2 at 19:11
Also, that API is deprecated... :/ – l33t Jan 2 at 19:13
it is not in my case...i have used it in after making user authenticated and then this code makes its magic... – Rushabh Patel Jan 2 at 19:14

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.