我试图在脸书墙上发布一张照片,并从Facebook开发者网站下载Android SDK for Facebook。 我试过这个2命令:
ShareLinkContent linkContent = new ShareLinkContent.Builder()
.setContentTitle(title)
.setContentDescription(description)
.setContentUrl(uri).build();
和
SharePhoto photo = new SharePhoto.Builder().setBitmap(image).build();
SharePhotoContent content = new SharePhotoContent.Builder()
.addPhoto(photo).build();
shareDialog.show(content);
通过第一个命令,我可以分享我想要的内容(朋友的墙,小组的墙,我的墙。)第二个命令,我只能在墙上分享内容。 有一种方法可以在群组墙上分享照片吗? 谢谢。