Stripe APIからカスタムアカウントのaccount.updated呼び出しを受け取ったときに(簡単なテスト)電子メールを送信しようとしています。私の他のウェブフックは、料金を作成し、成功または失敗した料金について顧客に通知するようになっていますが、ここではエラー500(カスタムアカウントのダッシュボードに表示されます)とメールが送信されないので、わかりません私がここで間違っていること。私のコードは次のようになります:ストライプwebhook account.updatedが動作していません
<?php
require_once('vendor/autoload.php');
// Set your secret key: remember to change this to your live secret key in production
// See your keys here: https://dashboard.stripe.com/account/apikeys
\Stripe\Stripe::setApiKey("sk_test_XXXX");
// Retrieve the request's body and parse it as JSON
$input = @file_get_contents("php://input");
$event_json = json_decode($input);
// Verify the event by fetching it from Stripe
$event = \Stripe\Event::retrieve($event_json->id);
// Do something with $event
if ($event->type == 'account.updated') {
// The E-Mail message to send to inform about a succeeded charge
$message = 'test';
// Send the E-Mail
mail('[email protected]', 'We need more info about you!', $message);
}
http_response_code(200); // PHP 5.4 or greater
ありがとうございました!
接続されたアカウント。今すぐ動作します:-) – Dirkozoid