Android - Android 应用程序可以在 facebook 上点赞 post 吗?

Android - Can Android app make a like facebook post action?

我目前正在研究 facebook sdk。

我用谷歌搜索了一下,刚刚找到了一些带有页面按钮的教程,但没有看到 posts 按钮的教程。 那么 facebook sdk 4.+ 是否允许我们进行类似 post?

的操作

如果是的话,你们能给我举个例子吗?

谢谢大家!

文档里都写了:

Note: as of Nov 17, 2016 we changed the behavior of publishing likes and only support this action with Page Access Tokens.

https://developers.facebook.com/docs/graph-api/reference/v2.8/object/likes

/* make the API call */
new GraphRequest(
    AccessToken.getCurrentAccessToken(),
    "/{object-id}/likes",
    null,
    HttpMethod.DELETE,
    new GraphRequest.Callback() {
        public void onCompleted(GraphResponse response) {
            /* handle the result */
        }
    }
).executeAsync();