¿Cómo implementar PubSubHubbub?

Me pregunto cómo implementarPubSubHubbub en un sitio PHP. No lo entiendo. ¿Puedes explicarme? No entiendo la idea. El editor notifica al suscriptor y al suscriptor: ¿mi sitio?

    <?php

// simple example for the PHP pubsubhubbub Subscriber
// as defined at http://code.google.com/p/pubsubhubbub/
// written by Josh Fraser | joshfraser.com | [email protected]
// Released under Apache License 2.0

include("PuSHSubscriber.php");

$hub_url = "http://pubsubhubbub.appspot.com";
$callback_url = "url to my site?";

$feed = "feed link";

// create a new subscriber
$s = new Subscriber($hub_url, $callback_url);

// subscribe to a feed
$s->subscribe($feed);
// unsubscribe from a feed
//$s->unsubscribe($feed);

?>

¿O en $ hub_url debería publicar mi hub?

Respuestas a la pregunta(2)

Su respuesta a la pregunta