0
的Facebook的documentation指出:如何設置在Facebook的圖形呼叫標誌符在Android SDK中
TOTAL_COUNT - >的誰喜歡的人的總數。這僅在設置> flag summary = true時纔會返回。
但我怎麼在以下調用設置這樣的標誌(摘要= 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看起來不只是什麼樣子。)
看看這個答案:http://stackoverflow.com/questions/17755753/how-to-get-likes-count-when-searching-facebook-graph-api-with-search-xxx – JpCrow
謝謝Jp,但這些答案只顯示url,我如何在Android中使用這些答案? – Dave