Stripe Webhook not working
问题 So I'm trying to do a simple Stripe Webhook. Ideally this shouldn't be to difficult. I'm using this webhook So here is my code: <?php require_once('lib/Stripe.php'); // Replace "xyz" with your Stripe Secret Live Key // Stripe::setApiKey("xxx"); $body = @file_get_contents('php://input'); $event_json = json_decode($body); // SETUP: // 1. Customize all the settings (stripe api key, email settings, email text) // 2. Put this code somewhere where it's accessible by a URL on your server. // 3. Add