使用 Graph API 获取 Facebook 帖子

发布于 2024-10-10 12:39:34 字数 199 浏览 1 评论 0原文

如何检索此信息并将其显示在我们的网站中?

我已经尝试过 这个 但没有运气,请帮忙。

How to retrieve this information and show it in our website?

I've tried this but no luck, please help.

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

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

发布评论

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

评论(1

夜深人未静 2024-10-17 12:39:34

该问题与 $.getJSON 有关。正如文档所述,请求无法成功从不同域检索数据、子域或协议。

我没有看到您提到要使用哪种语言来获取这些帖子,但这里有两个简单的示例说明如何使用:

  • PHP:

$信息=
json_decode(file_get_contents('https://graph.facebook.com/cocacola/posts'));

if ($info) {
    foreach ($info->data as $obj) {
        echo $obj->message, "
"; } }
  • javascript:
;
<脚本类型=“text/javascript”>
FB.api('/cocacola/posts', 函数(响应) {
    for (var i = 0; i < response.data.length; i++) {
        警报(响应。数据[i]。消息);
    }
});

祝你好运!

The problem is related to $.getJSON. As the documentation states, the request can not successfully retrieve data from a different domain, subdomain, or protocol.

I don't see you mention a language you want to use in order to get those posts, but here are 2 simple examples of how to do it using:

  • PHP:

$info =
json_decode(file_get_contents('https://graph.facebook.com/cocacola/posts'));

if ($info) {
    foreach ($info->data as $obj) {
        echo $obj->message, "<br/>";
    }   
}
  • javascript:
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script type="text/javascript">
FB.api('/cocacola/posts', function(response) {
    for (var i = 0; i < response.data.length; i++) {
        alert(response.data[i].message);
    }
});
</script>

Good luck!

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