GAE上的XMPP bot状态消息

时间:2010-08-30 08:25:52

标签: python google-app-engine xmpp bots

GAE XMPP文档说明无法为应用设置状态消息(https://code.google.com/appengine/docs/python/xmpp/overview.html#Google_Talk_User_Status)。

另一方面,我已经对Vark IM客户端设置了状态消息。显然它不是在GAE上托管的, 但是可以为app设置状态消息。

我必须深入挖掘,但是想知道有关于这个主题的任何python引用?

1 个答案:

答案 0 :(得分:1)

查看https://code.google.com/appengine/docs/python/xmpp/overview.html#Sending_Application_Status

您可以通过send_presence方法设置状态消息:

xmpp.send_presence(to_jid, status="My app's status")