我正在使用下一个代码加入现有的MUC会议室:
XMPPRoomMemoryStorage *roomStorage = [[XMPPRoomMemoryStorage alloc] init];
XMPPJID *roomJID = [XMPPJID jidWithString:@"newRoom5@conference.administrator"];
xmppRoom = [[XMPPRoom alloc] initWithRoomStorage:roomStorage
jid:roomJID
dispatchQueue:dispatch_get_main_queue()];
[xmppRoom activate:[self appDelegate].xmppStream];
[xmppRoom addDelegate:self
delegateQueue:dispatch_get_main_queue()];
[xmppRoom joinRoomUsingNickname:[self appDelegate].xmppStream.myJID.user
history:nil
password:nil];
XMPPMUC * xmppMUC = [[XMPPMUC alloc] initWithDispatchQueue:dispatch_get_main_queue()];
[xmppMUC activate:[self appDelegate].xmppStream];
[xmppMUC addDelegate:self delegateQueue:dispatch_get_main_queue()];
并且在用户加入房间之后我试图在不使用创建房间的用户(实际所有者帐户)的情况下将其权限更改为所有者:
- (void)xmppRoomDidJoin:(XMPPRoom *)sender {
// ADD USERS TO OWNERS LIST
[xmppRoom editRoomPrivileges:@[[XMPPRoom itemWithAffiliation:@"owner" jid:[XMPPJID jidWithString:[self appDelegate].xmppStream.myJID.user]]]];
}
我得到错误,我不确定它是否相关:
RECV: <iq xmlns="jabber:client" type="error"
id="64BBA616-56D7-4CB1-AC07-CBEA4C37E98C"
from="newroom5@conference.administrator"
to="newuser236@administrator/26ee7a3d">
<query xmlns="http://jabber.org/protocol/muc#admin">
<item affiliation="member" jid="newuser236"/>
</query>
<error code="403" type="auth">
<forbidden xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"/>
</error>
</iq>
并且用户未添加到Openfire中的“所有者”列表中。
另外我想添加我设置:
publicRoom : 1
moderated : 0
membersOnly : 0
canInvite : 1
roomPassword : nil
canRegister : 1
canDiscoverJID : 1
logEnabled : 1
有关如何将刚刚加入房间的用户添加到所有者列表的任何建议?以及为什么我收到错误的任何想法?
答案 0 :(得分:0)
由于我无法使用xmpp库,我使用PHP创建了功能,所以问题没有解决,但使用PHP编码和数据库,你可以解决它。