Hi,
We are integrating Hosted Checkout using the instruction on https://docs.clover.com/docs/hosted-checkout-api We have successfully made a sandbox transaction and received a webhook message on our endpoint.
The webhoook message contains the a header field 'Clover-Signature'.
E.g. 'Clover-Signature: t=1642599079,v1=tf1535bddbf8923d77ca9665eed5fc89b8b5506bbad137cd4ca76aa2a8d2a342'.
According to https://docs.clover.com/docs/ecomm-hosted-checkout-webhook this signature value should be "computed using the current time + payload + webhook secret".
Do you have any sample code (e.g. in PHP) or an algorithm showing how this actually should be calculated? We tried sha1() of the combined value of 'current time + payload + webhook secret' and a few other things but the computed value doesn't match the sent signature.