Facebook连接使用Jabber ID

时间:2013-07-17 19:11:16

标签: android facebook xmpp asmack

在我的应用程序中,我没有使用像X-FACEBOOK-PLATFORM这样的SASLAuthentication,而是使用Facebook Jabber ID方法登录。

this引用,我得到了以下代码

public void connectToFb() throws XMPPException {

ConnectionConfiguration config = new ConnectionConfiguration("chat.facebook.com", 5222);
config.setSASLAuthenticationEnabled(true);
config.setSecurityMode(SecurityMode.required);
config.setRosterLoadedAtLogin(true);
config.setTruststorePath("/system/etc/security/cacerts.bks");
config.setTruststorePassword("changeit");
config.setTruststoreType("bks");
config.setSendPresence(false);
try {
    SSLContext sc = SSLContext.getInstance("TLS");
    sc.init(null, MemorizingTrustManager.getInstanceList(this), new java.security.SecureRandom());
    config.setCustomSSLContext(sc);
} catch (GeneralSecurityException e) {
    Log.w("TAG", "Unable to use MemorizingTrustManager", e);
}
XMPPConnection xmpp = new XMPPConnection(config);
try {
    xmpp.connect();
    xmpp.login("facebookusername", "****"); // Error on this line
    Roster roster = xmpp.getRoster();
    Collection<RosterEntry> entries = roster.getEntries();
    System.out.println("Connected!");
    System.out.println("\n\n" + entries.size() + " buddy(ies):");
    // shows first time onliners---->
    String temp[] = new String[50];
    int i = 0;
    for (RosterEntry entry : entries) {
        String user = entry.getUser();
        Log.i("TAG", user);
    }
} catch (XMPPException e) {
    xmpp.disconnect();
    e.printStackTrace();
}
}

我使用了 smack 3.3.0 api,uses_INTERNET权限,以及那里提到的步骤(MemorizingTrustManager)。

但是我收到了错误。

04-21 15:18:44.589: E/AndroidRuntime(2811): FATAL EXCEPTION: main
04-21 15:18:44.589: E/AndroidRuntime(2811): java.lang.VerifyError: org.jivesoftware.smack.sasl.SASLMechanism
04-21 15:18:44.589: E/AndroidRuntime(2811):     at java.lang.Class.getDeclaredConstructors(Native Method)
04-21 15:18:44.589: E/AndroidRuntime(2811):     at java.lang.Class.getConstructor(Class.java:472)
04-21 15:18:44.589: E/AndroidRuntime(2811):     at org.jivesoftware.smack.SASLAuthentication.authenticate(SASLAuthentication.java:314)
04-21 15:18:44.589: E/AndroidRuntime(2811):     at org.jivesoftware.smack.XMPPConnection.login(XMPPConnection.java:221)
04-21 15:18:44.589: E/AndroidRuntime(2811):     at org.jivesoftware.smack.Connection.login(Connection.java:366)
04-21 15:18:44.589: E/AndroidRuntime(2811):     at com.activapps.fbchat.MainActivity.connectToFb(MainActivity.java:61)

拥有像www.facebook.com/ nizam.cs 这样的个人资料;我使用用户ID为nizam.cs,nizam.cs @ facebook.com&amp;登录nizam.cs@chat.facebook.com,但没有一个工作。

我错过了什么?

我在没有facebook sdk的情况下在模拟器上测试过它。

1 个答案:

答案 0 :(得分:1)

问题解决了! :)

问题在于我使用的smack库。而不是smack3.3.0,使用 asmack-android-6.jar 这是一个更新的SMACK库:使用xep0280和xep0184

解决了连接问题。