Reputation: 1164
Is there any way to create Webhooks in ASP.NET Core?
I looked into https://github.com/aspnet/WebHooks but I can't find support for ASP.NET Core
Upvotes: 4
Views: 11968
Reputation: 211
WebHooks will be rolled out with the ASP.NET Core 2.1 release, as announced here: https://blogs.msdn.microsoft.com/webdev/2018/02/02/asp-net-core-2-1-roadmap/#webhooks.
Update: WebHooks was pulled out of 2.1 and has moved to the 2.2 release.
Upvotes: 7
Reputation: 622
Scott is right. ASP.NET Core 2.1 supports webhooks and since the preview is already out, you can create webhooks with ASP.NET Core. Here is a Github repository having sample for DropBox and Github Webhooks with ASP.NET Core. You can also visit this post to know more in detail about the implementation.
Upvotes: 3