Marcus
Marcus
@horymury Thank you for looking into it, I will try your solution.
@horymury so I tried to implement your solution like this: ``` // Generate the signature of JSON body for comparison const hmac = crypto.createHmac("sha256", secret); const signedPayload = timestamp.concat(".", JSON.stringify(req.body));...
@horymury As far as I can tell, the signature mismatch already happens the first time that I see the request in our logs, but I will keep an eye out...