Is there a way to get all nicknames of a MUC Room with an ejabberd server?
I'm trying with:
<iq from='crone1@shakespeare.lit/desktop'
id='member3'
to='coven@chat.shakespeare.lit'
type='get'>
<query xmlns='http://jabber.org/protocol/muc#admin'>
<item affiliation='member'/>
</query>
</iq>
but I obtain only jid without nicknames:
<iq from='coven@chat.shakespeare.lit'
id='member3'
to='crone1@shakespeare.lit/desktop'
type='result'>
<query xmlns='http://jabber.org/protocol/muc#admin'>
<item affiliation='member'
jid='hag66@shakespeare.lit'
role='participant'/>
</query>
</iq>
On 6.5 Querying for Room Items from XEP 0045 when you send
You have the following description
if the room is public them you get
From my knowledge ejabberd implements this correctly.