私はアンドロイドアプリでFacebook上で画像を共有したいと思います。私はこのコードを使用します:Facebookで共有する[Android]
SharePhoto photo = (SharePhoto)new SharePhoto.Builder().SetBitmap(bitmap).Build();
SharePhotoContent content = new SharePhotoContent.Builder()
.AddPhoto(photo)
.Build();
_fbShareButton.ShareContent = content;
私はFacebookのアプリケーションを作成したアカウントからしか公開できません。別のアカウントにログインすると、共有ウィンドウは表示されません。
アプリはFacebookの開発者アカウントでオンラインです。
ありがとうございます! :)
ShareDialogを使用する場合は、Mode.WEBを使用してください。 –
Mode.Webの使用方法は? – bigjoe1
shareDialog.show(content、Mode.WEB); –