我正在尝试使用以下代码调用FB autorize对话框:
//return true if is autologged
//return false if facebook login dialog is called
public boolean LoginAsync(Activity act)
{
m_strLastError="";
boolean bTryLogin= true;
if ((m_fbkey != null) && (m_fbkey.length() > 0))
{
facebook.setAccessToken(m_fbkey);
bTryLogin = !facebook.isSessionValid();
}
if (bTryLogin)
{
facebook.authorize(act, new String[] { "email", "offline_access", "publish_stream", "read_stream"}, new LoginDialogListener());
return false;
}
//"succesfull 'autologin'
return true;
}
单击按钮时,它在测试应用程序中运行良好,但在将其移动到OnCreate时停止工作。 对话框不再出现。只有空屏幕。 是否因为在OnCreate中使用而崩溃?
答案 0 :(得分:0)
如果您呼叫登录并拥有有效令牌,那么您将跳过登录表单并直接进入onComplete回调。
http://facebook.stackoverflow.com/questions/9130133/authorize-method-called-twice-for-facebook-on-android 感谢mcnicholls。