我正在使用 PHP 中的 Stripe 支付网关。我在帐户设置中设置了 webhook 并发送了一个测试 webhook,但我的webhook 文件中没有任何事件:
require_once('./lib/Stripe.php');
Stripe::setApiKey("sk_test_hxdlbNUxlCUVK6V8p5nbxl8G");
$body = @file_get_contents('php://input');
$event_json = json_decode($body);
$event_id = $event_json->id;
echo $event_id;