我正在使用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();
这很好用。 现在我想在帖子中添加感觉/活动。 我在谷歌搜索但没有找到任何解决方案。 有人知道吗? 提前谢谢。