通过网站跟踪社交媒体分享,喜欢,主题标签

时间:2017-02-09 09:29:04

标签: php social-networking event-tracking

我想知道以下概念是否可行。 我正在使用PHP创建一个网站,该网站可以在各种社交媒体(如facebook,twitter和Instagram)上跟踪多个用户帖子(主题标签,评论,喜欢)。

用户需要在我的网站上进行注册,每当他在fb,tw或instagram上发布带有特定主题标签的帖子/评论时,我的网站都会跟踪它并在我的网站上为该用户分配一些点数。

如果有可能,我不知道。如果有人可以提供帮助,那就太好了。谢谢。

1 个答案:

答案 0 :(得分:-1)

以下是我认为可以帮助您满足需求的示例

推特上的分享

通过API

使用来自twitter的回调网址

https://cdn.api.twitter.com/1/urls/count.json?url=http://www.yourdomain.com

Out put将是这样的

{
    "count": 22,
    "url": "http://www.yourdomain.com/"
}

对于Facebook     https://graph.facebook.com/?id=http://www.yourdomain.com

{
    "id": "http://www.yourdomain.com",
    "shares": 60
}

评论,喜欢和分享计数

http://api.facebook.com/restserver.php?method=links.getStats&urls=http://www.yourdomain.com&format=json

[{
     "url": "http://www.yourdomain.com",
     "normalized_url": "http://www.yourdomain.com/",
     "share_count": 11,
     "like_count": 23,
     "comment_count": 26,
     "total_count": 60,
     "click_count": 0,
     "comments_fbid": 10150451628634400,
     "commentsbox_count": 0
}]

了解更多信息,请查看此链接 https://www.madebymagnitude.com/blog/getting-your-social-share-counts-with-php/