I want to share image on Facebook with my android app. I use this code:
SharePhoto photo = (SharePhoto)new SharePhoto.Builder().SetBitmap(bitmap).Build();
SharePhotoContent content = new SharePhotoContent.Builder()
.AddPhoto(photo)
.Build();
_fbShareButton.ShareContent = content;
The problem is that i can only publish from account where i created facebook app. After login to another account the share window doesn't appear.
The app is online on facebook developer account.
Thanks in advance! :)