我有这个简单的问题因为FB而变得复杂.我尝试使用facebook sdk从
android分享链接和图像.
有没有人玩过ShareOpenGraphObject,ShareOpenGraphAction和ShareOpenGraphContent之前,facebook文档很糟糕,没有任何例子.我在等待例子.
谢谢
最佳答案 我们发布一些代码然后:
ShareOpenGraphObject object = new ShareOpenGraphObject.Builder()
.putString("og:type", "books.book")
.putString("og:title", "A Game of Thrones")
.putString("og:description", "In the frozen wastes to the north of Winterfell, sinister and supernatural forces are mustering.")
.putString("books:isbn", "0-553-57340-3")
.build();
ShareOpenGraphAction action = new ShareOpenGraphAction.Builder()
.setActionType("books.reads")
.putObject("book", object)
.putPhoto("image", photo)
.build();
ShareOpenGraphContent content = new ShareOpenGraphContent.Builder()
.setPreviewPropertyName("book")
.setAction(action)
.build();
shareDialog.show(this, content);
我的想法是,我不想使用一本书,我只想分享一个图像链接和一条消息……我是怎么做到的? facebook sdk糟透了