我使用Facebook的Android SDK(4.14)将图像发布到我的Facebook墙上。我使用以下代码
SharePhoto photo = new SharePhoto.Builder().setBitmap(bitMap).build();
SharePhotoContent share = new SharePhotoContent.Builder().addPhoto(photo).build();
ShareApi.share(share,null);
这对我来说很好。我只是想找到一个可以作为参数传递这个允许看到这个图像的朋友列表的可能性。
这可以通过Share API实现吗?
此致
迈克尔