我正在使用http://restfb.com/
我有一个帖子的ID,我想要检索它,但我找不到如何!我搜索网站的文档和谷歌,但似乎没有人有这个问题。
我尝试过:
facebookClient.fetchObject(id, JsonObject.class);
但是我收到了这个错误:
Can't retrive post: Received Facebook error response of type GraphMethodException: Unsupported get request.
答案 0 :(得分:0)
请尝试以下代码:
Post post = client.fetchObject(id, Post.class, Parameter.with("fields", "from,to,likes.summary(true),comments.summary(true)"));