如何在Android SDK中设置Facebook图形调用中的标记

时间:2016-01-22 19:28:21

标签: android facebook facebook-graph-api

Facebook documentation声明:

  

total_count - >总喜欢的人数。这仅在>时返回flag summary = true已设置。

但是如何在以下调用中设置这样的标志(summary = true):

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

(我想知道使用哪些代码来获取喜欢总数的JSON响应,而不仅仅是带有标记的url会是什么样的。)

1 个答案:

答案 0 :(得分:3)

替换

/{object-id}/likes

使用

/{object-id}/likes?summary=1