I’m trying to authenticate a webhook request via a shared sha56 secret in the header. The name/value pair is of this form
Name Value
X-MyThing-Sgnature sha256=34fssdkjkjkjkj334334, t=34349898989
Using header authentication in n8n, I"m trying to extract that sha256 value and compare it to a known secret before proceeding with processing the webhook. What is the best way to do this? Is it via a code block after the webook, so I would have no authentication on the webhook itself? Is there another way?