Skip to content

Instantly share code, notes, and snippets.

@julien51
Created August 5, 2009 14:34
Show Gist options
  • Save julien51/162701 to your computer and use it in GitHub Desktop.
Save julien51/162701 to your computer and use it in GitHub Desktop.
Right Now :
<iq type="result" to="[email protected]" id="subman1" from="firehoser.superfeedr.com">
<pubsub xmlns="http://jabber.org/protocol/pubsub" xmlns:superfeedr="http://superfeedr.com/xmpp-pubsub-ext" >
<subscriptions superfeedr:page="3">
<subscription node="http://domain.tld/a/feed/atom.xml" subscription="subscribed" jid="[email protected]" />
<subscription node="http://domain2.tld/feed.rss" subscription="subscribed" jid="[email protected]" />
</subscriptions>
</pubsub>
</iq>
With statuses :
<iq type="result" to="[email protected]" id="subman1" from="firehoser.superfeedr.com">
<pubsub xmlns="http://jabber.org/protocol/pubsub" xmlns:superfeedr="http://superfeedr.com/xmpp-pubsub-ext" >
<subscriptions superfeedr:page="3">
<subscription node="http://domain.tld/a/feed/atom.xml" subscription="subscribed" jid="[email protected]">
<status feed="http://domain.tld/a/feed/atom.xml" xmlns="http://superfeedr.com/xmpp-pubsub-ext">
<http code="200">9718 bytes fetched in 1.462708s : 2 new entries.</http>
<next_fetch>2009-05-10T11:19:38-07:00</next_fetch>
</status>
</subscription>
<subscription node="http://domain2.tld/feed.rss" subscription="subscribed" jid="[email protected]" />
<status feed="http://domain2.tld/feed.rss" xmlns="http://superfeedr.com/xmpp-pubsub-ext">
<http code="200">9718 bytes fetched in 1.462708s : 2 new entries.</http>
<next_fetch>2009-05-10T11:19:38-07:00</next_fetch>
</status>
</subscription>
</subscriptions>
</pubsub>
</iq>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment