Hi,
we are playing around with blather and vines to get a pubsub thing going. After putting in quite some time to get an initial example going we got confronted with the following error:
Code:
pubsub.publish("some_node", {yay: nil}, "pubsub.localhost")
Error:
<iq from="pubsub.localhost" id="blather000b" type="error">
<error type="modify">
<bad-request xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"/>
</error>
Adding the following code solved the issue:
e = Blather::XMPPNode.new('entry')
e.content = "hello"
pubsub.publish("some_node", {yay: el}, "pubsub.localhost")
Our question now is: Why is blather not sending this <entry> tag, or more specifically why has this been removed from the code base.
Aurora & Christoph pairing