After looking on the net for 2 days I finally decided to post on SO.
Well I simply want to publish a photo in my android app on to facebook.
AM using the official android-facebook-sdk. I imported to example project and in the upload section add my code to upload photo. like
mUploadButton.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
Bundle params = new Bundle();
params.putString("method", "photos.upload");
Bitmap temp = BitmapFactory.decodeResource(getResources(),R.drawable.facebook_icon);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
temp.compress(Bitmap.CompressFormat.JPEG, 100, baos);
byte[] imgData = baos.toByteArray();
params.putByteArray("picture", imgData);
mAsyncRunner.request(null, params, "POST", new SampleUploadListener());
}
});
But it doent work :(
I went through the links in this forum too like: Looking for android Facebook SDK examples
but am not able to post. :(
Kindly help me.THanks.