我正在尝试通过 FQL 执行此操作,但我认为我正在从错误的数据库或其他东西中检索信息。
使用这个 FB Like iframe 来“喜欢”一个 URL:
<iframe src="//www.facebook.com/plugins/like.php?href=http://shop.sinkorswimbrand.com/product/sink-or-swim-snapback&send=false&layout=button_count&width=46&show_faces=false&action=like&colorscheme=light&font&height=21" onclick="javascript:updateLikes();" style="border:none; overflow:hidden; width:46px; height:21px;" allowtransparency="true" frameborder="0" scrolling="no"></iframe>
使用此 FQL URL 检索 URL 上的 JSON 信息:
https://api.facebook.com/method/fql.query?query=select total_count,like_count,comment_count,share_count,click_count from link_stat where url='http://shop.sinkorswimbrand.com/product/sink-or-swim-snapback'&format=json
返回: ---注意:我自己确定“喜欢”这个。
[{"total_count":0,"like_count":0,"comment_count":0,"share_count":0,"click_count":0}]
对 Facebook 的 API 有更多经验的人有这方面的经验吗?提前致谢!