I am looking all over the place for an end to end *working example of using the Android Facebook SDK to upload an image to a user's wall. I've succeeded in doing this with a link to a web accessible image, but they say it's possible to just submit a byte array, however, when I try this, I just get an empty post on the wall (it even omits the title and description).
I've tried using photo and image as the hash keys for the byte array... my byte array is a perfectly valid Bitmap... So... I'm stumped. Is this just another buggy Facebook API that doesn't work? I'd love to know if anyone has used it successfully and maybe take a look at the code you used to see how mine is different.
Here's mine...
ByteArrayOutputStream stream = new ByteArrayOutputStream();
comboBitmap.compress(Bitmap.CompressFormat.JPEG, 60, stream);
Log.d(Constants.TAG, "filled stream");
byte[] bitmapdata = stream.toByteArray();
Bundle b = new Bundle();
//b.putString("picture","http://myinkpic.com/images/inkIcon.png");
b.putString("caption", "Stash Title");
b.putString("description", "Stash Caption");
b.putByteArray("photo", bitmapdata);
myApp.facebook.request("me/feed", b, "POST");
And here's a link to the dev page where they mention the byte[] [Facebook api]1
Notice how they say this: "Make sure the Bundle value for the photo parameter is a byte array."
That's what gave me the idea to use "photo" as the key. It may in fact totally wrong, but I can't seem to find the docs now for where they define the keys.