2

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

this reference,我得到了以下代码

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 和 nizam.cs@chat.facebook.com 进行登录,但这些都不起作用。

我错过了什么?

我在没有 facebook sdk 的模拟器上对其进行了测试。

4

1 回答 1

1

问题解决了!:)

问题出在我使用的 smack 库上。使用asmack-android-6.jar代替 smack3.3.0, 它是一个更新的 SMACK 库:带有 xep0280 和 xep0184 的 smack

这解决了连接问题。

于 2013-07-18T12:56:46.207 回答