我正在开发使用Phonegap / Cordova的facebook插件。我在stackoverflow和任何地方读过关于这个插件的每一篇文章或例子,但我仍然有这个未解决的问题。
现在,当我的应用程序启动时 - 我调用“FB.init”方法。问题是,我没有任何回调使用,所以我知道什么时候完成,然后检查登录状态。
如果我在FB.init之前订阅了auth.statusChange事件,那么我只会在用户已经登录时引发此事件。这还不够,因为我还需要知道他什么时候没有登录。
如果我在FB.init之后调用“FB.getLoginStatus”,它就不起作用了,因为这一切都是异步的,它会在“fb.init()”完成之前尝试获取登录状态。
换句话说,当用户启动时,我无法判断用户何时没有登录。
谢谢你,丽兰。答案 0 :(得分:0)
好的,所以我现在用超时+小事解决了这个问题。 我真的不喜欢超时,但这是我目前为“未知”会话状态找到的唯一解决方案。这是我的代码:
// This event will rise when FB.init() completed, ONLY if the user is connected
var statusChangeRaised = false;
var statusChangeHandler = function(session) {
statusChangeRaised = true;
console.log('auth.statusChange event callback. session: ' + session.status);
// We only want this handler one time
FB.Event.unsubscribe('auth.statusChange', statusChangeHandler);
handleLoginStatus(d, session, true);
};
FB.Event.subscribe('auth.statusChange', statusChangeHandler);
// Phonegap native plugin
FB.init({ appId : _FB_APP_ID,
nativeInterface : CDV.FB,
status: true,
useCachedDialogs : false });
// The callback can be trusted only if it say the user is NOT connected!
// * The scenario that the user is connected is covered by the auth.statusChange event
FB.getLoginStatus(function(session) {
console.log("getLoginStatus (just after init) callback. session: " + session.status);
if (session.status === "notConnected") {
statusChangeRaised = true;
handleLoginStatus(d, session, false);
}
});
// The timeout will handle scenario that the user is "unknown", so the auth.StatusChange didn't rise
// and also the getLoginStatus cannot be truested,
setTimeout(function () {
if (!statusChangeRaised) {
FB.Event.unsubscribe('auth.statusChange', statusChangeHandler);
FB.getLoginStatus(function(session) {
console.log('FB.getLoginStatus (inside timeout after FB.init) callback. session: ' + session.status);
handleLoginStatus(d, session, true);
});
}
}, 6 * 1000);