这可能听起来很愚蠢,但我遵循了这个教程:
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)
但是我不知道如何使用它,我也找不到任何sleekxmpp文档如何使用这个组件。我想在这里完成的是能够从python注册/注销xmpp服务器上的用户。
答案 0 :(得分:1)
结帐
http://louizatakk.fedorapeople.org/sleekxmpp-1.0-Beta2-0/examples/config_component.py
它将回答您的所有问题。如果没有,请发布评论,并附上以下后续问题。