gpt4 book ai didi

php - 在网站上显示 Facebook 新闻源/时间线

转载 作者:IT王子 更新时间:2023-10-28 23:45:21 28 4
gpt4 key购买 nike

我有一位客户希望在他们的网站上显示他们公司的 Facebook 新闻源/时间线。这不是个人时间线/新闻源,而是组织的。

我读过的所有内容似乎都是几年前的事情,但结果似乎是:Facebook 希望将其所有数据保存在自己的服务器上——他们不希望人们将其导出,而且人们因尝试而被禁止. (正如我所说,这些信息已有好几年的历史了。)

目前我发现的最接近的东西是 Activity Feed Plugin ,但这只会记录其他用户与网站或 FB 应用的交互。

有没有人成功地将他们的公开更新导出到外部网站,还是我必须告诉我的客户无法完成?

感谢您的帮助!

最佳答案

AFAIK,在某种程度上是可能的。 Like Box plugin 是最简单的解决方案,但不是最适合您的情况。 :

The Like Box enables users to:

See how many users already like this Page, and which of their friends like it too
Read recent posts from the Page
Like the Page with one click, without needing to visit the Page

更好的解决方案:使用他们的Graph API ,但是您只能读取数据(作为 JSON),不能在客户的网站上完全复制流,不要期望能够应用 facebook 使用的样式(即您将无法抓取它) ,您必须复制它,或者创建自己的样式。

现在如果页面是公开的并且可以被所有人阅读,因为没有隐私规则,那么你可以简单地使用任何有效的 access_token(也可以是 app access_token)调用 url:

https://graph.facebook.com/<clientpagename_OR_id>/feed

https://graph.facebook.com/<clientpagename_OR_id>/posts

根据您的具体需要,试试 graph api explorer检查(并查看返回的数据类型)。当帖子很多时,会有分页地址,你也可以在资源管理器中注意到。

如果页面不公开,您需要一个具有 read_stream 权限的 access_token,因此您需要创建一个 facebook app , 类型的网站。然后让您客户页面的管理员使用 read_stream permission 授权应用程序.之后,您可以使用身份验证后收到的 access_token 调用 url,并可以继续读取流。

https://graph.facebook.com/<clientpagename_OR_id>/posts?access_token=thetoken

在这种情况下,请使用 PHP SDK , 以简化身份验证和调用图形 api。

重要链接:Authentication Guide , Real-time-updates .

祝你好运。

编辑:您确实需要访问 token 来访问提要或发布连接,但您不一定需要访问 token 来读取页面对象本身,如 this documentation 中所述.
文档注释:

For connections that require an access token, you can use any valid access token if the page is public and not restricted. Connections on restricted pages require a user access token and are only visible to users who meet the restriction criteria (e.g. age) set on the page.

关于php - 在网站上显示 Facebook 新闻源/时间线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10208754/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com