如何通过 php 从我们公司页面获取我最新的 Facebook 更新
我需要从我们公司的 Facebook 页面获取最近 3 条更新。
我可以看到我需要使用“图表”内容,但大多数帮助文件等中的信息适用于用户而不是公司页面。
我想使用 PHP 并将使用缓存。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Facebook 图形 API 相对容易使用,您感兴趣的页面是: http: //developers.facebook.com/docs/reference/api/page/
帖子的 url 语法为 https://graph.facebook.com/companypage/feed ,但是此类请求需要使用 oauth 令牌。
我建议您运行通过 SDK 找到的基本 PHP Facebook API 示例: http:// Developers.facebook.com/docs/reference/php/
其他教程,例如 http://thinkdiff.net/facebook/php-sdk-3-0-graph-api-base-facebook-connect-tutorial/ 可能会有所帮助。
The Facebook graph API is relatively easy to use, the page of interest to you is : http://developers.facebook.com/docs/reference/api/page/
The url syntax for posts is https://graph.facebook.com/companypage/feed , however such requests require the usage of an oauth token.
I'd recommend you run through the basic PHP Facebook API examples found with the SDK: http://developers.facebook.com/docs/reference/php/
Other tutorials such as http://thinkdiff.net/facebook/php-sdk-3-0-graph-api-base-facebook-connect-tutorial/ might help.