In python xmpp module, I'm able to retrieve the nickname of any contacts as follows:

self.connection.auth(userJid.getNode(), self.password)
self.roster = self.connection.getRoster()  
name = self.roster.getName(buddyJid)

..where buddyJid is of the form user@gmail.com.
Now, I need to retrieve the nickname of the user who authenticates the connection (userJid). I cannot find the name using the above method. Which method can I use retrieve the name of the current user?

link|improve this question

69% accept rate
feedback

1 Answer

This information is not in the roster. You will need to query the clients individually and get their vCard by sending this IQ :

<iq from='stpeter@jabber.org/roundabout'
    id='v1'
    type='get'>
  <vCard xmlns='vcard-temp'/>
</iq>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.