2

我使用下面的代码在我的应用程序中使用 fb 登录。

facebook.authorize(this, new String[] { "publish_stream" }, -1,
                new DialogListener() 

这是正确的,但是如果我想使用下面的代码在没有身份验证屏幕的情况下登录,那么我无法登录 fb 为什么

facebook.authorize(this, new String[] { "publish_stream" }, 
                new DialogListener() 
4

1 回答 1

0

尽管仍在他们的开发网站上列出,但 Facebook 对象及其相关方法已在 3.0 版中被弃用

我建议使用他们的 Scrumptious 教程使用 Fragments 进行“官方”身份验证方式:https ://developers.facebook.com/docs/tutorials/androidsdk/3.0/scrumptious/authenticate/

于 2013-08-17T22:13:16.613 回答