1
我知道有很多帖子提出了同樣的問題和提供的解決方案,但是我發現流行的和被接受的答案都不是'似乎提供了一個準確的答案。這很可能是由於Facebook的圖形API錯誤,但因爲我真的不知道,因此question.I已經使用下面使用圖表API獲取Facebook贊和Facebook共享的URL準確計數
https://graph.facebook.com/?fields=id,share,og_object{likes.limit(0).summary(true),comments.limit(0).summary(true)}&id=http://www.yoururl.com
的網址,然後我得到的是如下
{
"id": "http://www.yoururl.com",
"share": {
"comment_count": 0,
"share_count": 4068
},
"og_object": {
"likes": {
"data": [
],
"summary": {
"total_count": 0
}
},
"comments": {
"data": [
],
"summary": {
"order": "chronological",
"total_count": 0
}
},
"id": "1088138987923727"
}
}
這是不準確的,因爲share_count實際上是股票+評論+喜歡,簡而言之,是否有更好的方法來實現?