import xmpp
def set_status(username, password, status):
jabber = xmpp.Client('gmail.com')
jabber.connect(server=('talk.google.com',5223))
jabber.auth(username, password, 'python_status_message')
jabber.send(xmpp.Iq(typ='set', queryNS='google:shared-status',
payload=[xmpp.Node('status', payload=status)]))
Tags: gchat, google, gtalk, jabber, python, status, talk, xmpp, xmpppy
October 16, 2008 at 12:11 am |
Any thoughts on how to read the status? I can’t seem to get a response back from a typ=’get’ xmpp.Iq