脸书 SDK 安卓
我正在尝试将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保在运行应用程序时使用您的应用程序 ID。
Make sure you use your app id while running the application.
尝试一下 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