Como implementar o PubSubHubbub?

Eu estou querendo saber como implementarPubSubHubbub em um site PHP. Eu não entendo. Você pode me explicar? Eu não entendi a idéia. O editor notifica o assinante e o assinante - meu site?

    <?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);

?>

Ou em $ hub_url, devo postar meu hub?

questionAnswers(2)

yourAnswerToTheQuestion