如何将Jabber条目添加到我的XMPP帐户



我能够使用此代码将Entry添加到XMPP帐户中。我无法获得订阅"两者",而不是这样,而是得到none

roster.createEntry("abc@xyz.com", "abc", null);

当我订阅该帐户的条目时,如何使用存在type=both添加条目。我想知道XMPP publish-subscribe功能是否功能?

  1. 如何获取入站存在通知?
  2. 如何发送出站存在通知?

编辑:

public void Addcontact() {    
    Roster.setDefaultSubscriptionMode(Roster.SubscriptionMode.manual);
    Roster roster = m_connection.getRoster();
    if(!roster.contains("pa@ace.com")) {        try {           
            roster.createEntry("pa@ace.com", "pa", null);               
        } catch (XMPPException e) {          
            e.printStackTrace();
        }
    }else {
        Log.i("Acc = ", "contains");
    }
}

我正在添加这样的条目,我仍然得到存在类型= none ..

这是我在应用程序中添加另一个朋友的方式。

protected void doAddContactToListAsync(String address, String name,
                ContactList list) throws ImException {
            debug(TAG, "add contact to " + list.getName());
            Presence response = new Presence.Type.subscribed);
            response.setTo(address);
            sendPacket(response);
            Roster roster = mConnection.getRoster();
            String[] groups = new String[] { list.getName() };
            if (name == null) {
                name = parseAddressName(address);
            }
            try {
                roster.createEntry(address, name, groups);
                // If contact exists locally, don't create another copy
                Contact contact = makeContact(name, address);
                if (!containsContact(contact))
                    notifyContactListUpdated(list,
                            ContactListListener.LIST_CONTACT_ADDED, contact);
                else
                    debug(TAG, "skip adding existing contact locally " + name);
            } catch (XMPPException e) {
                throw new RuntimeException(e);
            }
        }

只使用必需部分

Presence response = new Presence.Type.subscribed);
response.setTo(address);
sendPacket(response);
Roster roster = mConnection.getRoster();
roster.createEntry(address, name, groups);

为了收听传入请求,请将addPacketListener注册到您的连接

    mConnection.addPacketListener(new PacketListener() {
            @Override
            public void processPacket(Packet packet) {
                Presence presence = (Presence) packet;
                    if (presence.getType() == Type.subscribe) {
                    debug(TAG, "sub request from 1" + address);
//Implement accept or reject depend on user action. 
            mContactListManager.getSubscriptionRequestListener()
                            .onSubScriptionRequest(contact);
//or you can test with send back Presence.subscribe first and send Presence.subscribed back to requester.

                } else {// Handle other Presence type.
                    int type = parsePresence(presence);
                    debug(TAG, "sub request from " + type);
                    contact.setPresence(new Presence(type,
                            presence.getStatus(), null, null,
                            Presence.CLIENT_TYPE_DEFAULT));
                }
            }
        }, new PacketTypeFilter(Presence.class));
        mConnection.connect();

正确的顺序:

  1. 用户1将订阅发送给用户2。
  2. 用户2将订阅发送并添加回用户1。
  3. 用户1发送订阅到user2。

另一个问题您可以检查

最新更新