PubSubHubbub allows Techanist's Feed to send realtime notifications when new content is published.

Ever wondered how FriendFeed and GoogleBuzz get updates from your blog so fast and how Netvibes or Google Reader can show you stories that have just been published?

These apps use the PubSubHubbub protocol.

It's a simple protocol built on HTTP which relies on 3rd parties, called hubs. This page is the hub for Techanist's Feed.

Want Techanist's Feed's content in realtime?

  1. Send an POST request to http://techanist.superfeedr.com, with the following params :
    • hub.mode : subscribe or unsubscribe
    • hub.verify : sync or async
    • hub.callback : http://domain.tld/your/callback
    • hub.topic : http//feed.you.want.to/subscribe/to
  2. The hub will send a request to your callback url, to verify your intent : your callback must respond with 200 and must echo the hub.challenge provided by the hub.
  3. If the hub returns 204, you're subscribed!, If it returns 202, the hub will check the subscription later. If it returns anything else, something was wrong, you may want to check the body of hub's the response.
  4. When you're subscribed, as soon as the hub sees a new entry in a feed, it will send a POST request with the feed's new entries in the body.

This service is provided by Superfeedr. And yes, this is real-time.