Hi Max,
on payment success ( payments appears in sandbox) I get the following:
Undefined array key "HTTP_STRIPE_SIGNATURE"Webhook signature verification failed: Unable to extract timestamp and signatures from header
This happens when the webhook request from Stripe attempts to reach the events listener at return link as you showed in FAQ's........&output=ajax.Apperently all parameters are correct . I checked with service provider and no evidence that Stripe "HTTP_STRIPE_SIGNATURE" is blocked by fire walls. Any idea(s) what it could be ?Cheers
Hi simelas
The webhook is pointing to the form page which has the Stripe Listener (this page must have a different Page Group), and the Success URL is pointing to a different URL, correct ? this setup must be done right first.
Now on which page do you get that error exactly ?
Hi max,The webhook is pointing to the form page which has theStripe Listener(this page must have a differentPage Group), and theSuccess URLis pointing to a different URL, That is correct.The error occurs on the strip listener page, although stripe records a 200 and everything expected occurs. . we will check once again .we found a way to neutralise it with :$is_post = ($_SERVER['REQUEST_METHOD'] === 'POST') ? '1' : '0';return (string) $is_post;Cheers
