WebSub
For subscribing to feed change events/updates using posthooks
Last updated
Was this helpful?
For subscribing to feed change events/updates using posthooks
Last updated
Was this helpful?
The v1 API also acts as an extended hub that can be used for setting up WebSub subscriptions to feed change events. The most typical event is when a new release is published (added to the feed), but there is also optional events that you can subscribe to for when a release is updated or hidden/deleted.
WebSub is a protocol for programmatically setting up webhooks/posthooks from your side. For example our wordpress plugin uses WebSub for setting up its subscription. Optionally we can add posthooks/subscriptions manually.
Required: setup a HTTP/HTTPS on your server that you would like to get a POST request when a new press release is published
Alternatively:
We can add/setup the subscription endpoint in our system manually if you send us the endpoint/callback URL.
Use WebSub to setup the in our system. This requires that the endpoint handles a WebSub challenge GET request as well.
Optional: If your system can handle extended events (hub.ext.event
) for when an existing press release in the feed is updated (PUT / DELETE) this should also be implemented in your .
Optional: Your endpoint can also optionally implement our (hub.ext.ping
) if you would like us to ping your endpoint periodically to make sure that it stills works.