You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**Deveel.Webhooks**| Provides the capabilities to handle webhook subscriptions and notifications ||[](https://github.com/deveel/deveel.webhooks/pkgs/nuget/Deveel.Webhooks)|
25
-
|**Deveel.Webhooks.Sender**| Provides services and functions to send webhooks to remote endpoints ||[](https://github.com/deveel/deveel.webhooks/pkgs/nuget/Deveel.Webhooks.Service)|
26
-
|**Deveel.Webhooks.Service**| Implements the functions to manage and resolve webhook subscriptions ||[](https://github.com/deveel/deveel.webhooks/pkgs/nuget/Deveel.Webhooks.Service)|
27
-
|**Deveel.Webhooks.MongoDb**| An implementation of the webhoom management data layer that is backed by [MongoDB](https://mongodb.com) databases ||[](https://github.com/deveel/deveel.webhooks/pkgs/nuget/Deveel.Webhooks.MongoDb)|
28
-
|**Deveel.Webhooks.DynamicLinq**| The webhook subscription filtering engine that uses the [Dynamic LINQ](https://dynamic-linq.net/) expressions ||[](https://github.com/deveel/deveel.webhooks/pkgs/nuget/Deveel.Webhooks.DynamicLinq)|
29
-
|**Deveel.Webhooks.Receiver.AspNetCore**| An implementation of the webhook receiver that is backed by [ASP.NET Core](https://dotnet.microsoft.com/apps/aspnet)||[](https://github.com/deveel/deveel.webhooks/pkgs/nuget/Deveel.Webhooks.Receiver.AspNetCore)|
24
+
|**Deveel.Webhooks**| Provides the capabilities to handle webhook subscriptions and notifications ||[](https://github.com/deveel/deveel.webhooks/pkgs/nuget/Deveel.Webhooks)|
25
+
|**Deveel.Webhooks.Sender**| Provides services and functions to send webhooks to remote endpoints ||[](https://github.com/deveel/deveel.webhooks/pkgs/nuget/Deveel.Webhooks.Sender)|
26
+
|**Deveel.Webhooks.Service**| Implements the functions to manage and resolve webhook subscriptions ||[](https://github.com/deveel/deveel.webhooks/pkgs/nuget/Deveel.Webhooks.Service)|
27
+
|**Deveel.Webhooks.MongoDb**| An implementation of the webhoom management data layer that is backed by [MongoDB](https://mongodb.com) databases ||[](https://github.com/deveel/deveel.webhooks/pkgs/nuget/Deveel.Webhooks.MongoDb)|
28
+
|**Deveel.Webhooks.DynamicLinq**| The webhook subscription filtering engine that uses the [Dynamic LINQ](https://dynamic-linq.net/) expressions ||[](https://github.com/deveel/deveel.webhooks/pkgs/nuget/Deveel.Webhooks.DynamicLinq)|
29
+
|**Deveel.Webhooks.Receiver.AspNetCore**| An implementation of the webhook receiver that is backed by [ASP.NET Core](https://dotnet.microsoft.com/apps/aspnet)||[](https://github.com/deveel/deveel.webhooks/pkgs/nuget/Deveel.Webhooks.Receiver.AspNetCore)|
30
30
31
31
You can obtain the stable versions of these libraries from the [NuGet Official](https://nuget.org) channel.
32
32
@@ -46,6 +46,74 @@ While working on a .NET Core 3.1/.NET 5 *aaS (_as-a-Service_) project that funct
46
46
47
47
We would like to help you getting started with this framework and to eventually extend it: please refer to the [Documentation](docs/README.md) section that we have produced for you.
48
48
49
+
The easiest way to get started is to follow the [Quick Start](docs/QUICKSTART.md) guide, but you can also refer to the [Frequently Asked Questions](docs/FAQS.md) section to get answers to the most common questions.
50
+
51
+
## A Simple Example
52
+
53
+
The following example shows how to create a webhook subscription, and how to send a notification to the subscribed endpoint:
// you can log the result of the notification to all receivers ...
106
+
returnResults.Ok();
107
+
});
108
+
109
+
app.Run();
110
+
}
111
+
}
112
+
}
113
+
```
114
+
115
+
More examples are available in the [Examples](examples/README.md) section.
116
+
49
117
## Contribute
50
118
51
119
Contributions to open-source projects, like **Deveel Webhooks**, is generally driven by interest in using the product and services, if they would respect some of the expectations we have to its functions.
0 commit comments