4

我正在使用(Appcelerator)Titanium 的 Facebook API 让用户登录他们的 Facebook 帐户。在Android上,当facebook窗口打开一个页面时,通常在调用授权后立即显示:

An error occurred with MY-FB-APP-NAME. Please try later
API Error Code: 110
API Error Description: Invalid user id
Error Message: Missing user cookie (to validate session user)

关闭窗口并重新开始通常可以解决问题。然而,当这种情况发生时,可能有 70% 的时间(在“会话”中第一次调用授权时)这是一个很大的可用性问题。

有谁知道如何解决这一问题?

我正在使用 Titanium 2.1.0 并在 Android 2.3.6 设备上进行测试。非常感谢

4

2 回答 2

0

实际上,由于 facebook 的缓存,问题仍然存在。我们需要在您注销时清除缓存使用下面的代码它工作正常

Titanium.Facebook.appid = "XXXXXXXXXXXXXXXXXX";
 Titanium.Facebook.permissions = ['publish_stream', 'read_stream'];


   var fbButton =  Ti.UI.createButton({
    top: 68,
    width:290,
    height:52,
    backgroundImage:"images/login/facebook.png"
});


 fbButton.addEventListener('click', function() {
if(Titanium.Facebook.loggedIn){
    Titanium.Facebook.logout()
    return
}
 Titanium.Facebook.authorize();

  });




Ti.Facebook.addEventListener('login', function(e) {
if (e.success) {
    win.close()
} else if (e.error) {
    alert(e.error);
} else if (e.cancelled) {
    alert("Canceled");
}
 });

  Titanium.Facebook.addEventListener('logout', function(e) {
    var url = 'https://login.facebook.com';
    var client = Titanium.Network.createHTTPClient();
    client.clearCookies(url);
});
于 2013-03-01T16:33:21.803 回答
0

试试这个代码,它是合金的,希望它能帮助你,否则我会检查并让你知道

索引.xml

<Alloy>
<Window class="container">
    <LoginButton id="fbButton" ns="Alloy.Globals.Facebook"/>
</Window>
</Alloy>

index.js

var fb = Alloy.Globals.Facebook;
fb.appid = xxxxxxxxx;
fb.permissions = ['publish_stream', 'create_event', 'email'];
$.fbButton.style = fb.BUTTON_STYLE_WIDE;
fb.addEventListener('login', function(e){
    if(e.success){
        fb.requestWithGraphPath('me', {}, 'GET', function(e) {
            if (e.success) {
                //alert(e.result);
                var response = JSON.parse(e.result);
                var email = response.email;
                var name = response.name;
                var gender = response.gender;
                alert(name+' '+email+' '+gender);
                alert('Logged in Successfully');
            } else if (e.error) {
                alert(e.error);
            } else {
                alert('Unknown response');
            }
        });
    }
});

合金.js

Alloy.Globals.Facebook = require('facebook');
于 2013-10-01T07:32:55.923 回答