- Notifications
You must be signed in to change notification settings - Fork18
A PubSubHubbub subscriber module for PHP
License
NotificationsYou must be signed in to change notification settings
pubsubhubbub/php-subscriber
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
This PHP library implements a subscriber for PubSubHubbub.
It was written byJosh Fraser and is released under the Apache 2.0 License
Update yourcomposer require block:
"require": {"pubsubhubbub/subscriber":"*" }
use \Pubsubhubbub\Subscriber\Subscriber;$hub_url ="http://pubsubhubbub.appspot.com";$callback_url ="put your own endpoint here";// create a new subscriber$s =newSubscriber($hub_url,$callback_url);$feed ="http://feeds.feedburner.com/onlineaspect";// subscribe to a feed$s->subscribe($feed);// unsubscribe from a feed$s->unsubscribe($feed);
About
A PubSubHubbub subscriber module for PHP
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
No packages published
Uh oh!
There was an error while loading.Please reload this page.
Contributors10
Uh oh!
There was an error while loading.Please reload this page.