hotmeteor / receiver

Receiver is a drop-in webhook handling library for Laravel.
MIT License
384 stars 21 forks source link

Fixed Stripe signature header #5

Closed xolf closed 2 years ago

xolf commented 2 years ago

The "HTTP" prefix is not required when using Illuminate\Http\Request. Due to this the signature header from Stripe can not be read at all and all verifications fail.

See https://www.php.net/manual/de/reserved.variables.server.php vs. https://laravel.com/docs/9.x/requests#request-headers

hotmeteor commented 2 years ago

Thanks!