-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds the Solid Quick Notifications Protocol that enables Solid Servers to directly provide clients with notification channels and/or let them negotiate subscriptions using HTTP headers within any GET requests.
- Loading branch information
Showing
4 changed files
with
1,206 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
sequenceDiagram | ||
participant Subscription Client | ||
participant Resource Server | ||
|
||
Subscription Client ->> Resource Server: HEAD Resource (topic) | ||
Resource Server ->> Subscription Client: Existing Notifications Channels | ||
Resource Server ->> Subscription Client: Subscription Discovery |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
sequenceDiagram | ||
participant Subscription Client | ||
participant Resource Server | ||
|
||
Resource Server -->> Subscription Client: Discovery Response | ||
Subscription Client ->> Resource Server: Subscription Request | ||
Resource Server ->> Subscription Client: Subscription Response (with Notification Channel) |
Oops, something went wrong.