将 Codeigniter 项目连接到 Facebook API 的最佳方式是什么?
使用 Codeigniter 制作 Facebook 应用程序的最佳方式是什么?
我已经看到了使用官方 facebook-php-sdk 的修复,以及为 CI 制作的库,例如 https ://github.com/Necromnius/Facebook-Ignited/downloads
在决定前进方向之前我应该考虑什么?
What is the best way to make a Facebook app with Codeigniter?
I've seen fixes for using the official facebook-php-sdk, and libraries made for CI such as https://github.com/Necromnius/Facebook-Ignited/downloads
What should I consider before deciding the way forward?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PHP SDK
PHP SDK 不再需要包装函数。它相当容易实现,这意味着您不需要其他依赖项。另外,SDK会定期更新,因此您应该确保您的项目能够轻松更新。即不要对原始 facebook 文件进行任何更改,以便它们可以轻松覆盖。
组装一个包含 SDK 文件的简单库,然后像这样连接到 Facebook:
PHP SDK
The PHP SDK does not need a wrapper function anymore. It is fairly easy to implement and it means you do not need to another dependency. Also, the SDK is updated regularly, so you should ensure that your project is able to be updated easily. I.e. don't make any changes to the original facebook files, so that they can over written easily.
Knock together a simple library that includes the SDK files then connect to Facebook like so: