这听起来可能很愚蠢,但我遵循了本教程:
https://github.com/fritzy/SleekXMPP/wiki/Creating-a-SleekXMPP-Plugin
这是最后使用创建的 XEP-0077 插件的组件:
import sleekxmpp.componentxmpp
class Example(sleekxmpp.componentxmpp.ComponentXMPP):
def __init__(self, jid, password):
sleekxmpp.componentxmpp.ComponentXMPP.__init__(self, jid, password, 'localhost', 8888)
self.registerPlugin('xep_0030')
self.registerPlugin('xep_0077')
self.plugin['xep_0077'].setForm('username', 'password')
self.add_event_handler("registered_user", self.reg)
self.add_event_handler("unregistered_user", self.unreg)
def reg(self, iq):
msg = "Welcome! %s" % iq['register']['username']
self.sendMessage(iq['from'], msg, mfrom=self.fulljid)
def unreg(self, iq):
msg = "Bye! %s" % iq['register']['username']
self.sendMessage(iq['from'], msg, mfrom=self.fulljid)
但我不知道如何使用它,我也找不到任何关于如何使用这个组件的 slimxmpp 文档。我在这里想要完成的是能够在 python 的 xmpp 服务器上注册/注销用户。