Facebook 应用程序突然停止运行;白页

发布于 2024-12-17 02:48:37 字数 159 浏览 0 评论 0原文

我的 Facebook 应用程序突然停止工作,只显示一个白色页面。没有任何代码更改。我尝试自己调试,似乎以下代码行有问题。

$user_id = $facebook->require_login();

谁能帮助我吗?我该如何开始?

My Facebook application has stopped working all of a sudden, it just shows a white page. There hasn't been any code change. I tried debugging myself, and it seems like there is an issue with the following line of code.

$user_id = $facebook->require_login();

Can anyone help me? How I can get started?

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

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

发布评论

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

评论(2

蛮可爱 2024-12-24 02:48:37

好吧,正如你所看到的,我遇到了下面同样的问题...事实证明,解决方案是更新身份验证方法并获取新的 SDK。请参阅:

https://developers.facebook.com/blog/post/534/

Ok, as you can see I am having the same problem below... it turns out that the solution is to update the authentication method and get the new SDK. See:

https://developers.facebook.com/blog/post/534/

胡大本事 2024-12-24 02:48:37

我不再使用 require_login() ,我相信你只需使用类似的东西:

$user = $facebook->getUser();

if($user) {
    try {
    $user_profile = $facebook->api('/me','GET');
    } catch(FacebookApiException $e) {
        //  Do something with this error
    }
}

I don't use require_login() anymore, I believe that you just use something like:

$user = $facebook->getUser();

if($user) {
    try {
    $user_profile = $facebook->api('/me','GET');
    } catch(FacebookApiException $e) {
        //  Do something with this error
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文