Im using stymiee/authnetjson
library to consume and verify an authorize.net webhook in the sandbox environment.
I can verify my headers include
X-ANET-Signature: sha512=C3CC15F7801AA304C0840C85E4F0222A15338827EE3D922DC13A6BB99DF4BFE7D8E235A623480C0EAF3151F7B008E4DFBFDC6E9F493A6901961C5CFC10143289
And my json body is
{"notificationId":"c5933ec1-2ef6-4962-a667-10552d19c481","eventType":"net.authorize.payment.authcapture.created","eventDate":"2018-01-20T20:36:54.9163559Z","webhookId":"66cf7109-f42f-45b9-bf36-f1ade83eac48","payload":{"responseCode":1,"authCode":"37ATT8","avsResponse":"Y","authAmount":550.00,"entityName":"transaction","id":"60038744863"}}
I have a signature key set up and it all seems correct and similar to the one in the tests for the library
My code looks like this:
$signature_key = "...";
$headers = getallheaders();
$payload = file_get_contents("php://input");
$webhook = new JohnConde\Authnet\AuthnetWebhook($signature_key, $payload, $headers);
if ( ! $webhook->isValid() ) {
error_log("Payload not valid");
}
I have also tried removing the $headers
argument from the constructor args
When I execute a test transaction, it is not valid so I get 'Payload not valid' in the logs. How can I debug this problem?
Thanks! NFV