我希望能够使用Python检索用户的Google Talk状态消息,很难找到有关如何使用某些库的文档。
答案 0 :(得分:0)
我没有安装xmpp的任何东西,但这里有一些旧的代码我可以帮助你。您需要将USERNAME / PASSWORD更新为您自己的值以进行测试。
需要注意的事项:登录Google Talk的用户会在其用户ID上获取一个随机存在字符串:如果您尝试获取其他某些用户的状态无关紧要,但是如果您想编写一些代码,则需要要与自己沟通,您需要区分从GMail登录的用户或GTalk客户端与测试程序。因此,代码搜索用户ID。
此外,如果您在登录后立即阅读状态,则可能无法获得任何信息。代码有延迟,因为状态变得可用需要一段时间。
"""Send a single GTalk message to myself"""
import xmpp
import time
_SERVER = 'talk.google.com', 5223
USERNAME = 'someuser@gmail.com'
PASSWORD = 'whatever'
def sendMessage(tojid, text, username=USERNAME, password=PASSWORD):
jid = xmpp.protocol.JID(username)
client = xmpp.Client(jid.getDomain(), debug=[])
#self.client.RegisterHandler('message', self.message_cb)
if not client:
print 'Connection failed!'
return
con = client.connect(server=_SERVER)
print 'connected with', con
auth = client.auth(jid.getNode(), password, 'botty')
if not auth:
print 'Authentication failed!'
return
client.RegisterHandler('message', message_cb)
roster = client.getRoster()
client.sendInitPresence()
if '/' in tojid:
tail = tojid.split('/')[-1]
t = time.time() + 1
while time.time() < t:
client.Process(1)
time.sleep(0.1)
if [ res for res in roster.getResources(tojid) if res.startswith(tail) ]:
break
for res in roster.getResources(tojid):
if res.startswith(tail):
tojid = tojid.split('/', 1)[0] + '/' + res
print "sending to", tojid
id = client.send(xmpp.protocol.Message(tojid, text))
t = time.time() + 1
while time.time() < t:
client.Process(1)
time.sleep(0.1)
print "status", roster.getStatus(tojid)
print "show", roster.getShow(tojid)
print "resources", roster.getResources(tojid)
client.disconnect()
def message_cb(session, message):
print ">", message
sendMessage(USERNAME + '/Talk', "This is an automatically generated gtalk message: did you get it?")