Hello, I am implementing the Hosted Checkout on my website. I have successfully authenticated and received a checkout session. Once I complete the payment, I'm getting a webhook notification and receive the following data:
Array ( [type] => PAYMENT [id] => PJGEHg3B4Z5HR [merchantId] => MYMERCHANTID [created] => 1649263620.268 [status] => APPROVED [message] => Approved for 4279 [checkoutSessionId] => 5224d174-35bc-46d5-9893-1Da5f75ece68 )
What I'm trying to do now is to verify the authenticity of the Webhook message. I saw there are instructions here: Clover Signature
My problem is that I am not receiving a "Clover-Signature" header in the webhook notification. Now, if I read careful, the documentation says, "A message for a Webhook notification may also include a header called Clover-Signature
". So in the case the header is not present, are there any guidelines on how to verify the authenticity of the Webhook message?
Thanks in advance!