3

这听起来可能很愚蠢,但我遵循了本教程:

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 服务器上注册/注销用户。

4

1 回答 1

1

查看

http://louizatakk.fedorapeople.org/sleekxmpp-1.0-Beta2-0/examples/config_component.py

它会回答你所有的问题。如果没有,请发表评论,并附上下面的后续问题。

于 2011-12-30T22:00:41.307 回答