Working with Webhooks in Sitecore - Part 2
In my previous blog , we discussed the concept of Webhooks. In this blog, we will set up a simple webhook in Sitecore. To understand the implementation better I have kept the things very simple. So in this example, I will be using No Authorization Item. Talking about it in brief then, you need to set up an Authorization item if your endpoint webhook requires Authentication. Although I would strongly recommend to use Authorization to keep your endpoint safe and secure in real scenarios. Webhook authentication types Currently in Sitecore, there are 5 types of Authentication available. 1. Basic : This requires username and password fields. 2. Digest : This requires username and password fields. 3. API Key : This requires Key, Value and Add to fields. 4. OAuth2.0 Client Credentials Grant : This requires Authority URL, Client ID, Client Secret, Scope, Header Prefix (The default value is Bearer), Additional endpoint base addresses fields. 5. ...