I am using the following code.
protected void postPicToWall(String userID){
try {
Log.d("FB","Caling");
Bitmap bi = BitmapFactory.decodeFile("/mnt/sdcard/cmtdd.png");
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bi.compress(Bitmap.CompressFormat.PNG, 100, stream); // where bm is bitmap from Sdcard
byte[] byteArray = stream.toByteArray();
String response = facebook.request((userID == null) ? "me" : userID);
Bundle params = new Bundle();
params.putString("message", "testing Photo Upload");
params.putString("caption", "Testing");
//params.putString("picture", "http://www.caradvice.pk/wp-content/uploads/2010/11/cars-lightning-mcqueen.jpg");
params.putByteArray("picture", byteArray);
response = facebook.request(((userID == null) ? "me" : userID) + "/feed", params, "POST");
Log.d("FB"," r ="+response);
if (response == null || response.equals("") ||
response.equals("false")) {
Log.v("FB", "Blank response");
}
Log.d("FB","Called");
}catch(Exception e){
e.printStackTrace();
}
}
After running this code. The message part in the above code can be seen on Friends Timeline. But There is no picture there. I am using friends_birthday,publish_stream permissions. Can any one solve my issue?
