Skip to content Skip to sidebar Skip to footer

Android Photo Upload To Facebook Using Graph Api?

i use the facebook sdk to post message to wall on my facebook account from android application , its looking fine but when i use the following code of garph api to upload the image

Solution 1:

just try this

bundle.putString("picture", "http://simplestrength.com/wp-content/uploads/kanji_luck.png");
Stringresponse= facebook.request("me/feed",bundle,"POST");

for post in album..

bundle.putByteArray("picture", byte);
Stringresponse= facebook.request("me/photos",bundle,"POST");

where byte = bytearray of image..

Post a Comment for "Android Photo Upload To Facebook Using Graph Api?"