Posting to /pleaseNotify/ tells the server that you wish to receive updates from the specified feed.
The required parameters are:
The rssCloud spec also includes 'registerProcedure' and 'protocol' parameters. These are both included but hidden. registerProcedure is not used and this implementation only supports http-post.
When you POST to /pleaseNotify/ the server checks the link validity then performs a GET request to the notification endpoint represented by http://
/pleaseNotify/ will return an XML request body with success="true" or "false", for example:
<?xml version="1.0" ?>
<notifyResult success="true"/>
Posting to /ping/ tells the server that the specified feed has been updated.
The required parameters are:
When you POST to /ping/ the server checks if the feed has actually changed since the last ping. If so, it will cycle through the subscribers to that feed and POST to the respective endpoints with the parameter url.
/ping/ will return an XML request body with success="true" or "false" depending on whether the feed has changed since the last ping.
Posting to /cancel/ tells the server that you wish to stop receiving updates from the specified feed.
The required parameters are:
When you POST to /cancel/ the server checks for a matching subscriber/feed pair and deletes it if found.
/cancel/ will return an XML request body with success="true" or "false".
The server has web based forms that you can use instead of taking code-based actions.
/pingForm/, /pleaseNotifyForm/, and /cancelForm/ each correspond to their respective endpoints above.
Recent events can be seen at /viewLog/.
After manually filling out each of the forms you will be automatically routed to the log to see whether the action succeeded or failed.