我在为 Paypal 通知 webhook 编写 PHP 侦听器脚本时遇到问题。我只需要一个脚本来监听和请求 Paypal json 数据。感谢大量在线文档,我成功地为 Stripe 创建了一个。这就是我所拥有的:
<?php require_once('./lib/Stripe.php');
Stripe::setApiKey("my_secret_stripe_key");
$input = @file_get_contents("php://input");
$event_json = json_decode($input);
// then I request the json data from a Stripe event... //
$event_json->type == 'charge.succeeded'
// etc... //
?>
我只需要类似的东西来处理 Paypal 事件 json。