Facebook图形API android在帖子中添加感受

时间:2017-11-07 10:53:04

标签: android facebook facebook-graph-api

我正在使用Facebook android SDK(V4)使用“me / feed”图形API在Facebook上发布消息。

Bundle params = new Bundle();
params.putString("message", message);

new GraphRequest(
    token,
    "me/feed",
    params,
    HttpMethod.POST,
    new GraphRequest.Callback() {
        public void onCompleted(GraphResponse response) {
            //Handle response
        }
    }
).executeAsync();

这很好用。 现在我想在帖子中添加感觉/活动。 我在谷歌搜索但没有找到任何解决方案。 有人知道吗? 提前谢谢。

0 个答案:

没有答案