Very good video! The most straightforward and effective implementation of webhooks in c# I have found. Helped a lot. Thank you for the great content!
@gopichandarselvaraj5250 Жыл бұрын
Great video! Your explanation of webhooks was clear and insightful. I especially appreciated the detailed walkthrough of the .NET/C# implementation - it filled a gap in my understanding that I hadn't found covered in other resources. Thanks for your efforts in putting this together and for your clear presentation. Looking forward to more content like this!
@DotNetCoreCentral Жыл бұрын
Glad it was helpful!
@thedacian123 Жыл бұрын
Very intersting!I think is the same mechanism that identity servers(ouath server) is using in the last step when they make a web call to the application that s using the external authentication.
@SantoshPrakhar2 ай бұрын
Nice one.
@abhaq50000Ай бұрын
i think this video for api example . what the diffrent
@sirbordas10 ай бұрын
Fantastic! You helped me alot. Many thanks from Portugal!
@DotNetCoreCentral10 ай бұрын
Glad it helped!
9 ай бұрын
Excuse me sr... do you have the implementation somewhere in your channel about webhook and notifications you mentioned at the end of the video? pleaseeee, I will be vert thanksfull
@ashokvadlamani3529 Жыл бұрын
Thanks for creating this video. This looks similar to API. Trying to understand how is it different
@netrunner19872 ай бұрын
Ok, I got Authorization working like your example code, I added more fields to the WebhookPayload, but how do I save this data into a database using a stored procedure? Thanks
@_raygun Жыл бұрын
Thanks. I really appreciate this video.
@shivachaturvedhi8840 Жыл бұрын
do you have similar video , which hooks Dns-lookup?
@knightmarerip71111 ай бұрын
Very nice video, however, this is just a web API with an endpoint called webhook. The actual webhook implementation would be an even driven type of setup where other systems subscribe to the event you expose. Still a very good video.
@DotNetCoreCentral11 ай бұрын
I am not sure what you mentioned is correct. Webhook is an API which will be called by someone when an event happen in their system. Or you can call a clients webhook when an event happen in your system and you want to communicate back. The caller is event driven, but webhook at the end of the day is just a web API, that will be invoked by someone when an event occur. Here are couple of references: zapier.com/blog/what-are-webhooks/#what www.redhat.com/en/topics/automation/what-is-a-webhook
@PrakashKumar-er5jo9 ай бұрын
how do i add this webhook to opensearch dashboard. when i add it there, it says connection refused. but same as your it works in postman
@yogij17 Жыл бұрын
Oh Wow! Great video to know about web hooks. Very very informative. Thank you so much for your guidance! Can you please tell me if there is a way to use single web API to work across different countries serving different needs. Regards.
@mans809 ай бұрын
Graet video. Can you make a video on implenting webhook to interact with Facebook Messenger? recieve real-time notifiations and send replies?
@magrpe Жыл бұрын
Tried this and it only works for HTTP Get, a HTTP Post returns '405 - Method Not allowed'. Any ideas?
@magrpe Жыл бұрын
Figured it out - the default method is app.MapGet not app.MapPost - great video, many thanks!
@netrunner19872 ай бұрын
@@magrpe Eagle eyes, I didn't see that until I saw your post... thanks.
@nehemiahlimocheburet1411 Жыл бұрын
Hello, this is an interesting video. I would like to ask for your help, can webhook be used to handle callbacks? I am really looking for a way I can handle callback data, kindly assist
@DotNetCoreCentral Жыл бұрын
yes it can be
@nehemiahlimocheburet1411 Жыл бұрын
@@DotNetCoreCentral thank you, please do one specifically for handling callbacks
@naimishahada1414 Жыл бұрын
@DotNetCoreCentral thanks for great explanation. please create detail video on this with call backs.
@RickKhj27 күн бұрын
This is not the implementation of a Webhook, this is a simple endpoint.