2

我按照以下 SO 问题中给出的指导方针使用 xmpp 连接到 facebook 聊天,我能够连接到 facebook 并提取正确数量的联系人,但是当它打印联系人时,它们都是随机数字 @chat.facebook.com 和全部返回离线。

Android Facebook 聊天示例项目

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("user.name", "password"); // Here you have to used only facebookusername from facebookusername@chat.facebook.com
            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();
        }
        }
4

3 回答 3

1

听起来您只想读取名称,因此请尝试使用

rosterEntry.getName()

它返回用户名,而不是

rosterEntry.getUser()

它返回 JID。

虽然不确定您的离线问题。你怎么检查?您必须设置一个名册侦听器才能获得在场的变化。

于 2012-10-30T16:22:07.270 回答
1

它是 XMPP 库中的一个错误。有一个解决方法。

第 1 步:连接到 XMPP。

步骤 2:通过 xmpp 登录到 facebook 帐户。

第 3 步:使用此 fql 查询获取在线好友列表。

    SELECT uid, name, online_presence ,
      sex FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me())

然后我将地址与字符串uid@chat.facebook.com 连接 并通过 XMPP 进行通信。

于 2013-01-24T07:50:02.020 回答
0

(不是 100% 清楚您在在线/离线方面遇到的问题可能是错误或您做错了什么),但您不会在响应中取回用户的实际用户 ID,这是提到的在文档中:

The user's own Jabber ID (JID) is different from the Jabber ID that their contacts will see because the translation is done internally.

于 2012-10-29T23:48:26.010 回答