如何接受所​​有xmpp好友请求并将其保存在名册中?

时间:2014-03-08 15:36:00

标签: ios xmpp xmppframework

我使用该代码接受所有好友请求并将该用户添加到名单列表

//auto accept friend
NSXMLElement *mypresence = [NSXMLElement elementWithName:@"presence"];
[mypresence addAttributeWithName:@"type" stringValue:@"subscribed"];
[mypresence addAttributeWithName:@"to" stringValue:[presence fromStr]];
[mypresence addAttributeWithName:@"from" stringValue:[WebRequests sharedInstance].sourceUser.uJid];
[[self xmppStream] sendElement:mypresence];

但是,如果该用户中有人从其名单中删除当前用户 - 用户将从当前名单列表中删除。如何将用户添加到当前名单列表中,而不会让用户自行删除?

0 个答案:

没有答案