Get Facebook share / like / comment Anzahl der URL
Bis heute habe ich die folgende URL verwendet, um die Anzahl der Facebook-Freigaben / Gefällt-mir / -Kommentare einer URL zu ermitteln:
https://api.facebook.com/method/links.getStats?format=json&urls=http://stackoverflow.com/
Heute hat Facebook diese Funktion entfernt. Also jetzt benutze ich das:
https://graph.facebook.com/v2.7?emc=rss&fields=og_object{engagement},share&access_token=<ACCESS_TOKEN_GOES_HERE>&id=http://stackoverflow.com/
Welche Ausgänge:
{
"og_object": {
"engagement": {
"count": 45267,
"social_sentence": "45K people like this."
},
"id": "10150180465825637"
},
"share": {
"comment_count": 12,
"share_count": 45267
},
"id": "http://stackoverflow.com/"
}
Das Problem ist,share_count
ist die Summe der Likes + Kommentare + Shares (soweit ich weiß).
Gibt es eine Möglichkeit, die Anzahl der Likes, Kommentare und Shares zu ermitteln?separa?