Facebook Like 保存到 PHP 数据库

发布于 2024-12-10 15:39:41 字数 124 浏览 0 评论 0原文

我们正在将 Facebook Like 集成到我们的网站中,我们希望获得喜欢的数量,以便将其保存到我们的数据库中,并稍后将喜欢的数据发送给我们的客户。我想知道这是否可能,因为 facebook like 是 iframe 到该网站的。

We're integrating Facebook Like to our website and we wanted to get the number of likes to save this to our database and send the data being liked to our customers later one. I'm wondering if it's possible since the facebook like was iframed to the site.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

微暖i 2024-12-17 15:39:41

获取您的页面的 Facebook 点赞数量非常简单:

$json = @file_get_contents('https://graph.facebook.com/'.$id); // $id = page id
$json = json_decode($json,true);

$likes = $json['likes'];

您可以通过自己访问链接来检查还有哪些其他可用值。

例如,Stackoverflow Facebook 页面:http://graph.facebook.com/11239244970

It is very simple to get the amount of Facebook likes for your page:

$json = @file_get_contents('https://graph.facebook.com/'.$id); // $id = page id
$json = json_decode($json,true);

$likes = $json['likes'];

You can check what other values are available by going to the link yourself.

For example, the Stackoverflow Facebook page: http://graph.facebook.com/11239244970

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文