针对新版本的 facebook PHP SDK 在应用程序中进行的更改
我们正在使用旧版本的 Facebook connect PHP SDK,我们需要做哪些更改才能使应用程序适应新的更改(由于 FB 应用程序版本更改,目前应用程序无法运行)
We are using old version of Facebook connect PHP SDK, what changes we need to do to make the app working with the new changes (Currently the app is not working due to FB app version changes)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更新您的 PHP SDK,连接需要更改,
getSession()
没有如果不再可用,请改用getUser()
。另外,如果您使用的 PHP SDK 太旧(在 Graph API 之前),那么您可能需要更新一些 API 调用函数。整体连接如下:
Update your PHP SDK, connection needs change,
getSession()
is no longer available, usegetUser()
instead. Also if you are using too old PHP SDK (before Graph API) then you may have to update some API calling functions.Overall connection is like below:
简短回答:身份验证流程和 REST API 弃用
长回答:自 2.1 版以来,有两个主要版本更改。您应该浏览Facebook 开发者博客以清楚地了解更改。
以下是一些公告链接:
使用 PHP 的新登录流程SDK 看起来像这样:
如果您当前正在存储会话密钥,它们将不再起作用。您需要迁移以使用 oauth 访问令牌。此 SO 链接讨论了此过程: Converting Facebook session key to access tokens
另外,如果您的画布应用程序使用旧版身份验证,您需要按照本页所述进行更改:迁移到 OAuth 2.0
Short answer: authentication flow and REST API deprecation
Long answer: there have been two major version changes since version 2.1. You should go through the facebook developer blog for clear understanding of changes.
Some of the announcement links below:
The new login flow using PHP SDK looks like this:
If you are storing session keys at the moment, they will not work anymore. You'll need to migrate to use oauth access tokens. This SO link discusses this process: Converting Facebook session keys to access tokens
Also, if yours is a canvas app using legacy auth, you'll need to make changes as described on this page: Migrating to OAuth 2.0