I implemented request verification from sample code
var requestSigner = new RequestSigner(GetBytes("SIGNING_KEY"));
// @param expectedSignature Signature from the MessageBird-Signature header in its original base64 encoded state.
const string expectedSignature = "EXPECTED_SIGNATURE";
var request = new Request("1544544948", requestParams, GetBytes(requestBody));
requestSigner.IsMatch(expectedSignature, request)
Request verification is working for incoming messages, i have no problem with that. But after i send the response, messagebird api sends a new webhook for delivery status, but request verification is not successfull for that second request.
I am using the same verification code. What can be the issue here ?
I am using WhatsApp sandbox.
I implemented request verification from sample code
Request verification is working for incoming messages, i have no problem with that. But after i send the response, messagebird api sends a new webhook for delivery status, but request verification is not successfull for that second request.
I am using the same verification code. What can be the issue here ?