Facebook的asmack XMPP客户端返回花名册随机数(Facebook asmack xm

2019-08-01 23:38发布

我也跟着下面的SO问题给出的guidlines使用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();
        }
        }

Answer 1:

这听起来像你只是想读的名字,所以请尝试使用

rosterEntry.getName()

它返回用户名,而不是

rosterEntry.getUser()

返回的JID。

不知道你的下线的问题,但。 你是如何检查? 你必须建立一个花名册监听得到的存在变化。



Answer 2:

它在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())

然后我CONCAT用绳子uid@chat.facebook.com解决,并通过XMPP通信。



Answer 3:

(这是不是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.



文章来源: Facebook asmack xmpp client returns random numbers for roster