0
Bellowはfacebokkページの自分のネットワーク内でのみ画像を共有できるコードです。私のアプリから他のパブリック・フェイスブック・ページに画像を共有できますか?どのように?
private void sharePhotoToFacebook(){
Log.e("in sharemethod", "hiiiiii");
Bitmap image = BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher);
SharePhoto photo = new SharePhoto.Builder()
.setBitmap(image)
.setCaption("Give me my codez or I will ... you know, do that thing you don't like!")
.build();
SharePhotoContent content = new SharePhotoContent.Builder()
.addPhoto(photo)
.build();
shareDialog.show(content);}
私のFacebookのネットワークにないページに画像を共有したいと思います。