Fact-checked by Grok 2 weeks ago

WebSub

WebSub is an open protocol that enables real-time, decentralized publish-subscribe communication for distributing updates to , allowing publishers to notify subscribers of changes via intermediary hubs using HTTP web hooks. Formerly known as PubSubHubbub, WebSub was developed as a successor to earlier efforts to standardize web-scale notification mechanisms and was published as a W3C Recommendation on January 23, 2018, by the W3C Working Group. The protocol addresses the limitations of traditional polling-based syndication formats like and by providing an efficient, push-based alternative that reduces server load and enables near-instantaneous delivery of updates. At its core, WebSub involves three primary roles: publishers, which host web resources (referred to as topics) and announce updates to one or more ; subscribers, which express interest in specific topics by registering a callback with a to receive notifications; and , which act as intermediaries to manage subscriptions, verify requests, and relay content updates from publishers to subscribers. The subscription process begins when a subscriber sends a request to a , specifying the topic and their callback endpoint; the hub then verifies the subscriber's control by sending a GET request to the callback containing a 'hub.challenge' parameter, which the subscriber must echo back in the response body. Unsubscription follows a similar flow but in an "unsubscribe" mode, while notifications occur when a publisher informs the hub of an update, prompting the hub to the revised content (often in or formats) directly to the subscriber's callback. WebSub emphasizes security and reliability, recommending the use of for all communications to protect against interception and requiring subscribers to use unique, unpredictable callback URLs to prevent unauthorized access. It also supports optional features like lease times (with a suggested default of 10 days for subscriptions), HMAC-SHA256 signatures for content integrity, and to allow subscribers to specify preferred formats. As a stable, interoperable standard, WebSub has been implemented in various systems for feed syndication, notifications, and applications, with conformance testing available through resources like the WebSub test suite.

Introduction

Definition and Purpose

WebSub is an defined as a W3C Recommendation, published on January 23, 2018, that specifies a decentralized publish-subscribe signaling protocol for web using HTTP webhooks. It enables servers to notify interested clients of updates to content hosted at HTTP or resource URLs, known as topics, without requiring clients to repeatedly poll for changes. The primary purpose of WebSub is to facilitate efficient, distribution of updates from publishers to subscribers, thereby reducing the and resource overhead associated with traditional polling mechanisms in web-based communication. By extending capabilities originally developed for syndication formats like and feeds, WebSub generalizes the webhook model to apply to any type of , allowing for broader adoption in distributed systems where timely notifications are essential. At its core, WebSub operates through a model involving publishers, who control the content topics; subscribers, who register interest in receiving updates; and hubs, which act as intermediaries to manage subscriptions and relay notifications. This structure evolved from the earlier PubSubHubbub protocol to provide a standardized, scalable approach for web-scale publish-subscribe interactions.

Historical Development

WebSub traces its origins to the PubSubHubbub protocol, which was developed in 2009 by engineers Brad Fitzpatrick and Brett Slatkin as a solution to the inefficiencies of polling mechanisms in and feeds, enabling push notifications instead of repeated client requests. The protocol drew inspiration from earlier pub-sub concepts discussed at events like OSCON 2008, but PubSubHubbub formalized a simple, web-hook-based approach targeted at web-scale distribution. Early developments included the release of initial specification drafts in , such as PubSubHubbub Core 0.3, which provided an open-source reference implementation on and encouraged decentralized participation. Community adoption quickly followed, with projects like the Superfeedr hub launching in to support real-time feed pings and demonstrating the protocol's viability beyond Google's infrastructure. These efforts highlighted PubSubHubbub's potential for broad use in content syndication, fostering open-source contributions and integrations in blogging platforms and feed readers. In 2017, the W3C Social Web Working Group adopted the protocol, renaming it WebSub in early 2017 to emphasize its simplicity and applicability beyond feed-specific use cases, moving away from the original "hubbub" nomenclature. The standardization process advanced rapidly: it was published as a W3C Candidate Recommendation on April 11, 2017, progressed to Proposed Recommendation on October 3, 2017, and achieved final status as a W3C Recommendation on January 23, 2018, with editors Julien Genestoux and Aaron Parecki overseeing the refinements. Since its recommendation in 2018, WebSub has seen minor errata corrections tracked in the W3C , alongside the development of a comprehensive at websub.rocks to validate implementations across publishers, subscribers, and hubs. Ongoing community maintenance occurs through the official W3C , ensuring compatibility and addressing implementation feedback without major spec changes.

Core Components

Roles in the Protocol

In WebSub, three primary roles—publisher, hub, and subscriber—form the foundation of the protocol, enabling efficient, decentralized content distribution based on HTTP web hooks. These roles ensure that updates to web resources are propagated without requiring direct connections between content creators and consumers, promoting scalability and reducing load on publishers. The interactions among these roles rely on standardized HTTP requests for notifications, subscriptions, and verifications, as defined in the protocol specification. The publisher owns and updates a topic, which is an HTTP or resource representing the content source, such as an or feed from a or site. Upon modifying the topic, the publisher notifies the associated by sending a request to trigger distribution, remaining unaware of specific subscribers to avoid managing them directly. To facilitate discovery, the publisher must embed links to both the topic and the hub within the resource's , such as in a <link rel="hub"> element. The acts as the intermediary that orchestrates the , handling , request verification, and content relay. It receives and processes subscription or unsubscription requests from subscribers, maintains a list of active callbacks, and, upon notification from a publisher, distributes the updated topic content via requests to those callbacks. Hubs can be self-hosted by publishers or operated as public services; examples include the PubSubHubbub Hub and Superfeedr, which support broad participation by accepting notifications with parameters like hub.mode=publish and hub.url. The subscriber, typically an end-user application, feed reader, or , expresses in a topic by discovering the publisher's through advertised links and registering a subscription with its own callback . This callback serves as the for receiving update notifications, where the subscriber must respond with an HTTP 2xx status code to confirm receipt and maintain the subscription. Subscribers do not interact directly with publishers, relying on the for all relay functions. Overall, publishers link their topics to hubs in published , enabling subscribers to subscribe indirectly through the , which then handles and pushes notifications without establishing direct publisher-subscriber channels. This decouples the parties, allowing hubs to across multiple publishers and subscribers. Optionally, hubs may engage topic owners (publishers) to verify subscription requests, ensuring control over the topic, though this is not mandatory for all implementations.

Key Concepts and Terminology

WebSub relies on a set of core concepts that facilitate the decentralized distribution of updates from publishers to subscribers via intermediary hubs. These terms encapsulate the protocol's mechanisms for identifying resources, managing subscriptions, and verifying interactions, ensuring reliable notifications over HTTP. The topic refers to the HTTP or URL of a resource—such as an or feed, or any —whose changes trigger notifications through the WebSub protocol. Publishers expose topics in their content via discovery links, and these resources must be publicly accessible to allow hubs to fetch and distribute updates. A callback URL is the subscriber-specified endpoint that receives POST requests from the hub containing notifications of topic updates. This URL must be unique, persistent, and ideally unguessable to prevent unauthorized access, serving as the primary delivery point for content distribution in the subscriber-hub interaction. The lease seconds parameter, an optional positive integer in subscription requests, indicates the desired duration in seconds for which a subscription should remain active. Hubs may honor this value, extend it, or impose their own limits; if unspecified by the subscriber, hubs typically default to a maximum of up to 10 days (864,000 seconds) to balance resource management and subscription longevity. During subscription verification, the hub challenge is a random generated by the hub and included in its initial GET or POST request to the callback URL. The subscriber must echo this challenge verbatim in its response to demonstrate over the , confirming intent without requiring additional at this stage. The parameter specifies the action type in requests to the hub, using literal values such as "subscribe" to initiate a new subscription or "unsubscribe" to terminate an existing one. This parameter is essential for directing the hub's processing of subscription-related operations. Discovery of WebSub capabilities within a topic is enabled through rel values in HTTP Link headers or HTML link elements. The "hub" rel value points to the URL of the distribution hub, while the "self" rel value identifies the canonical topic URL itself, allowing subscribers to locate and interact with the protocol's components.

Protocol Mechanics

Discovery and Topic Identification

In WebSub, enables subscribers to locate hubs and identify topics published by content creators, facilitating the initiation of real-time notification subscriptions. Publishers are required to advertise at least one hub URL and the canonical topic URL through standardized mechanisms in the topic's representation, ensuring discoverability without prior knowledge of specific endpoints. This relies on HTTP responses and document to extract relevant links, promoting across diverse web content formats such as , , or pages. The primary method for discovery involves HTTP Link headers in server responses to GET or HEAD requests for the topic URL. These headers use the Link field as defined in RFC 8288, specifying one or more hub endpoints with rel="hub" and exactly one canonical topic URL with rel="self". For example, a response might include:
Link: <https://example-hub.com>; rel="hub", <https://example.com/rss.xml>; rel="self"
This format allows servers to embed machine-readable metadata directly in HTTP, which subscribers parse to identify hubs for subscription. Publishers must include these headers in all relevant responses to enable reliable discovery. As a fallback when Link headers are absent, subscribers examine the body of the fetched document for embedded <link> elements. In XML-based feeds like or , these appear within the document structure, often in a <head>-like section, using attributes such as rel="hub" and href for the hub URL, alongside rel="self" for the topic. Similarly, for documents, <link> tags in the <head> section serve the same purpose. This method accommodates content types where HTTP headers might not be fully utilized, though it requires additional parsing of the response body. Subscribers follow a defined search order to ensure efficiency: first, inspect the HTTP Link headers from the topic fetch; if none are present or sufficient, then parse the document body for embedded links. This prioritization favors the more lightweight header-based approach while providing robustness. Upon identifying potential hubs and the topic, subscribers verify by re-fetching the topic URL to confirm the advertised links remain valid before proceeding to subscription, mitigating issues like outdated or malicious advertisements. Publishers may advertise multiple hubs via repeated rel="hub" links in headers or elements, often for redundancy or load distribution across different services. In such cases, subscribers select one or more based on factors like proximity, reliability, or support, allowing flexibility in hub choice without disrupting the . This multi-hub capability enhances the 's resilience, as seen in implementations where publishers link to both primary and hubs.

Subscription and Unsubscription Processes

The subscription process in WebSub begins when a subscriber sends an HTTP POST request to the hub's endpoint URL, using the application/x-www-form-urlencoded content type with UTF-8 encoding. The request must include the required parameters hub.mode set to "subscribe", hub.topic specifying the exact topic URL discovered from the publisher, and hub.callback indicating the subscriber's endpoint URL for receiving notifications, which should be unguessable and unique to prevent abuse. Optional parameters include hub.lease_seconds to request a desired subscription duration in seconds and hub.secret (up to 200 bytes) for optional HMAC-based signing of future notifications, though use over HTTPS is recommended for security. Upon receiving the subscription request, the hub validates the parameters and, if applicable, checks with the publisher to confirm the topic's validity, though this publisher validation step is optional. The hub then verifies the subscriber's intent by issuing an HTTP GET request to the provided hub.callback URL, appending query parameters hub.mode ("subscribe"), hub.topic, hub.challenge (a random string generated by the hub), and hub.lease_seconds (the duration the hub intends to honor, which may differ from the subscriber's request). To confirm control of the callback, the subscriber must respond with an HTTP 2xx status code and echo the hub.challenge value exactly in the response body; a 404 status rejects the verification, while other non-2xx responses fail it. If verification succeeds, the subscription becomes active, and the hub may respond to the original POST with HTTP 202 Accepted to indicate asynchronous processing, though any 2xx is valid; errors like invalid parameters result in 4xx or 5xx status codes with a plain-text error description in the body. Unsubscription follows a similar flow to initiate cancellation of an active subscription. The subscriber sends an HTTP POST request to the 's with application/x-www-form-urlencoded encoding, including the required parameters hub.mode set to "unsubscribe", hub.topic (matching the original discovered exactly), and hub.callback (the same as the subscription). Optional parameters hub.lease_seconds and hub.secret are ignored by the during unsubscription. Unlike subscription, no publisher validation is performed. The verifies the unsubscription intent by sending an HTTP GET request to the hub.callback URL with query parameters hub.mode ("unsubscribe"), hub.topic, and hub.challenge (a random ); hub.lease_seconds may be included but is ignored by the subscriber. The subscriber confirms by returning an HTTP 2xx status and echoing the hub.challenge in the body, terminating the subscription upon success; a rejects it, and other responses fail , leaving the subscription intact. The hub responds to the POST with HTTP on success or 4xx/5xx for errors like invalid parameters, including a plain-text description. Regarding lease management, hubs must enforce expiration times and cannot grant perpetual subscriptions; if hub.lease_seconds is specified in the subscription request, the hub may accept, reduce, or ignore it, notifying the subscriber of the final duration during . Hubs may automatically renew leases in some implementations, but subscribers should re-subscribe before expiration to maintain delivery, as the topic URL must match the originally discovered one precisely to avoid creating unintended new subscriptions.

Notification and Content Distribution

In WebSub, publishers notify hubs of content updates by sending an HTTP POST request to the hub's endpoint, including the parameters hub.mode=publish and hub.url specifying the topic URL from which the updated content can be retrieved. Upon receiving this notification, the hub fetches the fresh content directly from the specified topic URL to ensure the latest representation is obtained. The then distributes the updates to all active subscribers by issuing individual HTTP POST requests to each subscriber's designated callback . The request body contains the full updated retrieved from the topic , formatted to match the topic's original Content-Type header—for example, an XML for or feeds. To optimize delivery for supported feed formats like and , the may send only the differences (diffs) by excluding entries or items that were previously delivered to the subscriber, thereby reducing size without altering the core . Each distribution request includes headers: one with rel="hub" pointing to the 's endpoint and another with rel="self" indicating the topic . If a was established during subscription, the may also include an X-Hub-Signature header for integrity verification, though this is optional. The does not modify the itself beyond potential optimizations for specific formats; the delivered representation remains faithful to what was present at the topic during the fetch. Subscribers acknowledge successful receipt by responding with an HTTP 2xx status code. WebSub operates on a delivery model, where the attempts to notify subscribers but provides no protocol-level guarantees for ultimate delivery success. Hubs may implement their own retry mechanisms for failed deliveries, such as queuing and reattempting up to self-imposed limits, but retries cease after these thresholds, and undelivered notifications do not affect subscription leases, which persist until expiration or explicit unsubscription. Updates are handled through direct push notifications from publishers to the hub, enabling real-time propagation without reliance on periodic polling by the hub. Subscribers process these incoming requests idempotently to safely handle any potential duplicates arising from retries or network issues, ensuring consistent state without unintended side effects—a standard practice for webhook-based systems like WebSub. For scalability, especially with high-volume topics that may have numerous subscribers, hubs are designed to efficiently fan out notifications by distributing updates individually or in optimized batches to multiple recipients, supporting web-scale publish-subscribe communication. This fan-out capability allows a single publisher update to reach thousands of subscribers promptly, as demonstrated in implementations handling large feed networks.

Security and Implementation

Authentication Mechanisms

WebSub employs several mechanisms to authenticate and secure interactions between subscribers, hubs, and publishers, ensuring that subscriptions are authorized and notifications are tamper-proof. Central to this is the optional hub secret, a cryptographically random string provided by the subscriber during the subscription request via the hub.secret parameter. This secret, which must be less than 200 bytes and transmitted only over HTTPS, enables the hub to generate an HMAC digest for authenticating content distributions. The hub includes this signature in notifications using the X-Hub-Signature header, formatted as sha1=base64(signature) or sha256=base64(signature) (new implementations should avoid SHA-1 due to its weaknesses and use SHA-256 or stronger), depending on the chosen hashing algorithm. To verify a subscriber's over their callback during subscription confirmation, WebSub uses verification. Upon receiving a subscription request, the issues a GET request to the callback with a hub.[challenge](/page/Challenge) parameter containing a random . The subscriber must respond with an HTTP 2xx status code and echo the value in the response body, thereby proving ownership and without requiring additional credentials. This process prevents unauthorized parties from registering callbacks on behalf of the subscriber. Transport-layer security is strongly recommended through the use of for all critical communications, including , subscription requests, and notifications, to protect against man-in-the-middle interception and eavesdropping. Subscribers validate incoming notifications by recomputing the digest over the payload using the shared secret and the specified , then comparing it to the value in the X-Hub-Signature header. Mismatched or absent signatures result in rejection of the notification, ensuring only authorized hubs can deliver content. Lease times provide an additional layer of by limiting the duration of subscriptions. Hubs assign a hub.lease_seconds value—recommended at 864000 seconds (10 days)—in confirmation responses, after which subscriptions expire unless renewed. Shorter leases, such as 86400 seconds (one day), can further mitigate risks if a secret is compromised, as attackers have a bounded window to exploit it. WebSub does not include built-in authentication for publishers; instead, it relies on the publisher's control over the topic , verified through links in the feed that point to the . This design assumes publishers can securely update their feeds to announce or revoke topic affiliations.

Best Practices and Common Implementations

When implementing WebSub, developers should prioritize security and reliability by using for all communications, including subscription requests, verifications, and content distributions. Subscribers are recommended to employ unique, unguessable callback URLs to prevent unauthorized access and denial-of-service attacks. Hubs must support idempotent operations by allowing repeated subscription requests without altering active subscriptions, which facilitates safe retries during network failures. Additionally, subscribers should actively monitor and renew leases before expiration, as hubs are recommended to enforce short-lived leases—typically defaulting to 10 days—to limit resource exposure. For initial testing, public hubs such as Google's legacy service at pubsubhubbub.appspot.com provide a straightforward entry point without the need for self-hosting. Common hub implementations include both commercial and open-source options to facilitate content distribution. Superfeedr operates as a commercial WebSub hub, offering real-time push notifications for , , and feeds with support for high-volume subscriptions. Brid.gy serves as an IndieWeb bridge that leverages WebSub to enable cross-network notifications between personal sites and decentralized social platforms like the . For legacy systems, bridges like the PubSubHubbub integration in frameworks such as allow older feed-based applications to participate in WebSub without full protocol rewrites. Open-source alternatives include the WebSub Hub, a lightweight server for handling subscriptions and notifications, and the Ballerina WebSubHub module, which provides APIs for event-driven hub services in cloud-native environments. Publishers can integrate WebSub through accessible tools that automate hub notifications. The WordPress PubSubHubbub plugin enables automatic pinging of configured hubs upon post updates, embedding discovery links in and feeds for seamless subscriber access. RSS generators, such as those supporting Atom extensions, often include embedded elements in output feeds to advertise hub endpoints, allowing publishers to convert static content into real-time streams without custom coding. Subscriber-side libraries simplify callback handling and content retrieval. In , the Flask-WebSub extension provides modules for subscribing to topics and processing incoming notifications within Flask applications. developers can use server-side clients like those built on for WebSub callbacks, often integrated with event emitters for real-time processing. In podcasting, apps like Podnews incorporate WebSub to deliver instant episode alerts, pulling updates from publisher feeds via subscribed hubs for faster listener notifications. Testing compliance is essential for robust deployments; the websub.rocks suite offers automated checks for publishers, subscribers, and hubs across , subscription, and flows. For performance optimization, hubs should implement on subscription requests to prevent abuse, while publishers are advised to notify hubs promptly after content changes to minimize delays. Subscribers must respond to notifications within seconds to avoid hub retries and potential lease revocation.

Adoption and Use Cases

Real-World Applications

WebSub enables real-time feed notifications for and formats, particularly in blogging platforms such as , where plugins automatically ping hubs upon content updates to notify subscribers instantly and eliminate the need for frequent polling by aggregators. This push-based approach allows publishers to distribute updates efficiently, as seen in sites that embed hub links in feed headers for seamless integration. In podcasting, WebSub facilitates instant episode alerts by allowing hosts to notify public hubs like pubsubhubbub.appspot.com when new content is published, enabling apps and directories to receive updates within minutes for faster . Services such as Podnews leverage this for rapid propagation, with integrations in platforms like and Podcast Index supporting WebSub for feeds. As of April 2024, podcast apps like Pocket Casts have added WebSub support alongside Podping for quicker episode notifications. Within the social web, IndieWeb sites employ WebSub through tools like brid.gy to handle cross-site mentions and replies, bridging decentralized networks by pushing notifications of interactions such as likes or comments. This supports interoperability with protocols like ActivityPub via bridges, allowing real-time updates across independent sites without centralized polling. In enterprise environments, WebSub powers event-driven integrations, such as in the Modular Open Source Identity Platform (MOSIP), where Ballerina's WebSubHub package handles admin notifications for subsystems like ID repositories and external partners, ensuring reliable delivery over HTTP with OAuth2 authentication. Similarly, PushMDQ utilizes WebSub hubs to push metadata updates in federated identity systems, reducing pull queries by up to 95% and enabling instant propagation across international networks like eduGAIN. WebSub also applies to for pushing inventory updates to subscribers, avoiding API polling by notifying systems of stock changes in real time through HTTP webhooks. In (IoT) and sensor applications, WebSub is integrated into standards like the OGC SensorThings API, where a 2024-2025 extension enables asynchronous messaging for real-time sensor data updates using WebSub hubs. Similarly, the W3C Thing Description 2.0, published in November 2025, supports WebSub as a subprotocol for event notifications in Thing Models. Adoption includes services like Google Alerts, which uses WebSub for near-real-time notifications of new search results via feed updates. It is widespread in open-source content management systems, with hubs like Superfeedr having delivered over 268 billion entries historically, demonstrating large-scale subscription handling.

Advantages and Limitations

WebSub offers several key advantages over traditional polling-based syndication methods, such as RSS or Atom feeds, primarily through its push notification model. By leveraging HTTP webhooks via intermediary hubs, it achieves low latency, delivering updates in near real-time—often within seconds—rather than requiring subscribers to poll periodically at intervals of minutes or longer, which minimizes unnecessary network traffic and bandwidth usage. This push approach also yields significant efficiency gains for publishers, substantially reducing server load since resources are not expended on handling frequent, unproductive subscriber requests; for instance, a publisher can notify thousands of subscribers through a hub without direct connections to each one. Additionally, WebSub's design supports scalability through distributed hubs, allowing multiple intermediaries for fault tolerance and load distribution, while its status as an open W3C standard promotes interoperability and reduces vendor lock-in by avoiding proprietary ecosystems. It remains backward-compatible with existing feed formats like RSS and Atom, enabling seamless integration without requiring publishers or subscribers to overhaul legacy systems. Furthermore, the protocol accommodates any content type beyond just feeds, extending its utility to diverse applications such as event notifications. Despite these strengths, WebSub has notable limitations that can impact its reliability and security. The protocol's dependency on hub availability introduces a potential single point of failure; if a hub experiences downtime, notifications may not reach subscribers until a lease expires and resubscription occurs, with no built-in failover beyond manual use of multiple hubs. Delivery is best-effort only, as hubs typically retry failed notifications up to self-imposed limits (e.g., over 24 hours in some implementations) but offer no absolute guarantees, potentially leading to missed updates in unreliable networks. Callback endpoints are vulnerable to notification spam or distributed denial-of-service (DDoS) attacks, where malicious actors could flood subscribers with illegitimate requests if verification is inadequate. Security gaps arise if implementations neglect HTTPS for transport encryption or shared secrets for payload integrity, exposing content to interception or tampering; moreover, managing subscription leases introduces administrative overhead, as subscribers must periodically renew to maintain access. In comparisons to alternatives, WebSub excels over RSS polling for real-time needs by eliminating the resource-intensive pull model, though it lacks the bidirectional communication and persistent connections of WebSockets, making it less suitable for interactive applications like live chat where lower latency and two-way data flow are essential. It complements protocols like in decentralized social networking, where WebSub handles efficient push notifications for feeds while ActivityPub manages object delivery and social interactions using different verification mechanisms. Looking ahead, WebSub's future may involve extensions for enhanced reliability, such as algorithm negotiation for improved delivery semantics, aligning with its growing adoption in event-driven and scenarios, including integrations in OGC SensorThings API and W3C standards as of 2025.

References

  1. [1]
    WebSub - W3C
    Jan 23, 2018 · WebSub provides a common mechanism for communication between publishers of any kind of Web content and their subscribers, based on HTTP web hooks.
  2. [2]
    About PubSubHubbub
    Jan 12, 2012 · The specification for PubSubHubbub was originally developed by Google engineers Brad Fitzpatrick and Brett Slatkin. They have a good video ...Missing: origins | Show results with:origins
  3. [3]
    PubSubHubbub Core 0.3 -- Working Draft
    Feb 8, 2010 · An open, simple, web-scale pubsub protocol, along with an open source reference implentation targeting Google App Engine.Missing: origins | Show results with:origins
  4. [4]
  5. [5]
    Superfeedr - RSS Feed API & jQuery RSS API | Push Service
    Superfeedr pushes feed data in realtime. Superfeedr's powerful unified Feed API simplifies how you handle RSS, Atom, or JSON feeds.
  6. [6]
  7. [7]
  8. [8]
  9. [9]
    errata - GitHub
    No information is available for this page. · Learn whyMissing: 2018 | Show results with:2018
  10. [10]
    WebSub Rocks!
    ### Summary of WebSub Test Suite from https://websub.rocks/
  11. [11]
    GitHub - w3c/websub: WebSub Spec in Social Web Working Group
    ### Summary of Post-2018 Updates, Errata, Test Suite Development, Community Maintenance
  12. [12]
    RFC 8288 - Web Linking - IETF Datatracker
    This specification defines a model for the relationships between resources on the Web ("links") and the type of those relationships ("link relation types").
  13. [13]
  14. [14]
  15. [15]
    Best practices for webhooks - Shopify Dev Docs
    Build idempotent webhooks processing · Implement reconciliation jobs · Build a scalable and reliable system · Next steps. Best practices for webhooks.
  16. [16]
    Webhooks vs WebSub - A comparison - Ably Realtime
    In usage and use case, webhooks and WebSub are similar... but different. The article below sheds some more light on when and how to use each.Webhooks · Which Is The Better Choice... · WebsubMissing: dehubber | Show results with:dehubber<|separator|>
  17. [17]
  18. [18]
  19. [19]
  20. [20]
  21. [21]
  22. [22]
  23. [23]
    PubSubHubbub Hub
    Use this hub with your feeds. Add an //atom:link tag under //atom:feed for Atom feeds or under //rss:rss/channel for RSS feeds. The //atom:link tag should ...
  24. [24]
    Bridging the Indieweb and the Fediverse with Bridgy Fed, part 2
    May 4, 2019 · WebSub in general provides a way for online content to be distributed via hubs, with subscribers subscribing to notifications of updates ...Missing: public | Show results with:public
  25. [25]
    Pubsubhubbub - laminas-feed - Laminas Docs
    Pubsubhubbub is an open, simple, web-scale, pubsub protocol. A common use case to enable blogs (Publishers) to push updates from their RSS or Atom feeds ( ...<|separator|>
  26. [26]
    A WebSub Hub implementation in Node.js - GitHub
    WebSub provides a common mechanism for communication between publishers of any kind of Web content and their subscribers, based on HTTP web hooks.
  27. [27]
    ballerina-platform/module-ballerina-websubhub - GitHub
    This library provides APIs for a WebSub Hub service and WebSub Publisher client. WebSub is a common mechanism for communication between publishers.
  28. [28]
    WebSub (FKA. PubSubHubbub) – WordPress plugin
    Rating 5.0 (6) · FreeThis plugin is a simple way to let people know in real-time when your blog is updated. PubSubHubbub/WebSub is widely adopted and is used by Google Alerts.
  29. [29]
    Flask-WebSub - PyPI
    An implementation of a WebSub hub, publisher and subscriber as a Flask extension. The implementation is meant to be used as a library that can be integrated in ...
  30. [30]
    How WebSub works: and why it's good for your podcast - Podnews
    Mar 21, 2019 · Podcasting is PULL, not PUSH. When you upload a new episode of your podcast, you need to wait for the various podcast apps out there to pull ...<|control11|><|separator|>
  31. [31]
    What is WebSub? Common Cases and Implementations - Nordic APIs
    May 31, 2018 · WebSub forms a network of publishers, subscribers, and hubs. This network determines how content is sent, when it is sent, and to whom it is sent.
  32. [32]
    WebSub - IndieWeb
    WebSub is an open standard (W3C Recommendation) notification-based protocol for web publishing and subscribing to streams and legacy feed files in real time.
  33. [33]
    How MOSIP uses Ballerina WebSubHub for event-driven integration
    MOSIP needed an integration mechanism to communicate some key events. They used Ballerina's WebSubHub package for event-driven communication over HTTP.Missing: notifications | Show results with:notifications
  34. [34]
    None
    ### Summary of PushMDQ Using WebSub for Metadata Queries
  35. [35]
    Towards a programmable web: PubSubHubbub for Google Alerts
    Aug 19, 2009 · This protocol provides web-hook notifications when Atom and RSS feeds are updated, delivering web applications near-real-time information about ...Missing: WebSub | Show results with:WebSub
  36. [36]
    When to Use Webhooks, WebSocket, Pub/Sub, and Polling
    In this article, you will learn when and what scenarios you should be using webhooks. Compared to communication systems; WebSockets, pub/sub, and polling?Missing: DDoS RSS ActivityPub
  37. [37]
    WebHooks vs WebSub: Which Is Better For Real-Time Event ...
    Sep 21, 2017 · WebSub. Previously called PubSubHubbub, PubSub, or PuSH, WebSub is an open protocol, based on the Publish/Subscribe pattern and on WebHooks.<|control11|><|separator|>
  38. [38]
    Social Web Protocols - W3C
    Dec 25, 2017 · [ WebSub ] publishers deliver content to their hub, and hubs to their subscribers using HTTP POST requests. The body of the request is left to ...Missing: roles | Show results with:roles<|control11|><|separator|>