Can someone give me an PHP example of a Webhook Signature Validation, for the Stream API?
Essentially it is a hash (sha3) of the body and the secret Key?
I tried a couple of things like this:
$computedSignature = hash(‘sha3-256’, $request->getContent() . $signingSecret);
But nothing works.
Can someone help?