I got code to upload picture and video to Face Book.. But i don't know how to convert image from gallery to image in bytes.. also data in bytes.. Any one can help me????
*Upload picture,
Bundle params = new Bundle();
params.putByteArray("picture", <image in bytes>);
params.putString("message", "Have fun");
mAsyncRunner.request("me/photos", params, "POST", new SampleUploadListener());*
this is code for upload images...
*Upload video,
Bundle params = new Bundle();
param.putString("filename", <dataName>);
param.putByteArray("video", <data in bytes>);
mAsyncRunner.request("me/videos", param, "POST", new SampleUploadListener());**
this is code for upload images...
Any one know how code for my question please post.....
thanks in advance