laravel / cashier-paddle

Cashier Paddle provides an expressive, fluent interface to Paddle's subscription billing services.
https://laravel.com/docs/cashier-paddle
MIT License
245 stars 57 forks source link

Invalid signature from webhook #10

Closed robsontenorio closed 4 years ago

robsontenorio commented 4 years ago

Description:

I am getting invalid signature error from webhook. After debug just noticed :

By removing q from field list it works.

  $fields = $request->except([self::SIGNATURE_KEY, 'q']);

Steps To Reproduce:

robsontenorio commented 4 years ago

It was a problem with nginx config

before

try_files $uri $uri/ /index.php?q=$uri&$args;

after

try_files $uri $uri/ /index.php?$query_string;