Graph API not returning the correct number of "likes" and no comments
I have been looking for an answer to this problem for some time now and could not find any answer or hint. I guess my problem must be a basic one, and hope someone can show me the right way.
I have a page u开发者_运维百科sing the XFBML like and comment plugins: www.junodownload.com/products/if-this-is-house-i-want-my-money-back-zwei/1802350-02/
Looking directly on the page, I can see 10 "likes" and 1 comment made.
But when using the graph API in debug mode: graph.facebook.com/?id=http%3A%2F%2Fwww.junodownload.com%2Fproducts%2Fif-this-is-house-i-want-my-money-back-zwei%2F1802350-02%2F I see no comments and only 1 Like.
When using the graph API to retreive the comments (the xid is url-encoded): https://graph.facebook.com/comments/?ids=http%3A%2F%2Fwww.junodownload.com%2Fproducts%2Fif-this-is-house-i-want-my-money-back-zwei%2F1802350-02%2F I see no data at all.
I can see three potential causes:
- The count that is displayed next to the like button is not the number of likes. It consists of likes, shares, comments, and even messages that contain the link of the page to be liked.
- You are still using on old version of the comment box. You may want to try using href instead of xid or adding migrated=1 to the fb:comment tag. See https://developers.facebook.com/docs/reference/plugins/comments/.
- The fb:admins tag of your Open Graph tags is wrong. Run the debugger at http://developers.facebook.com/tools/debug.
精彩评论