Sync content with the Sitecore Authoring...
# news
j
Here’s a short demo of the Sitecore Authoring API and the Umbraco Management API syncing content. This approach leverages webhooks and simple HTTP requests for real-time updates without relying on any Sitecore or Umbraco NuGet packages.

https://www.youtube.com/watch?v=QHxpJ2EozBU

s
Just a question though, do you do any kind of validation of the Webhook POST? I can't see it in your code, so if I found out where your Webhooks send their data to, I could flood your sites with updates. Not that it's a big problem in closed source projects, but I've been doing this in open source and it is absolutely necessary to validate a secret. I've done it very crudely with a GUID in a querystring but I know it can be done better by signing the message properly.
j
The example is more to show how the Management API works. It didn't want to make the example more complex by adding validation.
s
Just wondering if you considered it, that's all! 👍