脸书 SDK 安卓

发布于 2024-10-20 14:05:47 字数 586 浏览 1 评论 0原文

我正在尝试将 Facebook sdk 集成到我的应用程序中。

当我按下 Facebook 登录按钮时,它显示一般错误“发生错误。请稍后再试” 任何人都知道可能是什么原因造成的。

private final class ButtonOnClickListener implements OnClickListener {

public void onClick(View arg0) {
    if (mFb.isSessionValid()) {
        SessionEvents.onLogoutBegin();
        AsyncFacebookRunner asyncRunner = new AsyncFacebookRunner(mFb);
        asyncRunner.logout(getContext(), new LogoutRequestListener());
    } else {
        mFb.authorize(mActivity, mPermissions, new LoginDialogListener());
    }
}

谁能

帮我解决这个问题?

多谢。

I am trying to integrate Facebook sdk into my app.

When I press facebook login button, it shows generic erro "An error occurred. Please try again later"
Anyone knows what might be the cause of it.

private final class ButtonOnClickListener implements OnClickListener {

public void onClick(View arg0) {
    if (mFb.isSessionValid()) {
        SessionEvents.onLogoutBegin();
        AsyncFacebookRunner asyncRunner = new AsyncFacebookRunner(mFb);
        asyncRunner.logout(getContext(), new LogoutRequestListener());
    } else {
        mFb.authorize(mActivity, mPermissions, new LoginDialogListener());
    }
}

}

Can anyone help me with this issue?

Thanks a lot.

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

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

发布评论

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

评论(2

不爱素颜 2024-10-27 14:05:48

确保在运行应用程序时使用您的应用程序 ID。

Make sure you use your app id while running the application.

本宫微胖 2024-10-27 14:05:48

尝试一下 EasyFacebookAndroidSDK,它很容易实现。这是一个很好的示例 http://kodefun.junian。 net/2011/10/easy-facebook-android-sdk-simple.html

Try EasyFacebookAndroidSDK, it's easy to implement. here is a good sample http://kodefun.junian.net/2011/10/easy-facebook-android-sdk-simple.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文