如何在 Stripe 中找到 PLATFORM_SECRET_KEY

How to find PLATFORM_SECRET_KEY in Stripe

如何在我的测试条帐户中获得 PLATFORM_SECRET_KEY 我正在使用 stripe connect

付款
\Stripe\Stripe::setApiKey(PLATFORM_SECRET_KEY);
    $tr = \Stripe\Payout::create(array(
      "amount" => 24784,
      "currency" => "usd",
      "source_type" => "bank_account"
    ));

这代表您自己帐户的 API 密钥,因此可以在您的仪表板中找到它:https://dashboard.stripe.com/account/apikeys

您将充当代表您关联的帐户发出 API 请求的平台,这就是您使用自己的 API 密钥的原因。您 需要在 Stripe-Account header 中传递连接的帐户 ID,如记录 here 所示。代码应如下所示:

\Stripe\Stripe::setApiKey(PLATFORM_SECRET_KEY);
$payout = \Stripe\Payout::create(
  array(
    "amount" => 24784,
    "currency" => "usd",
    "source_type" => "bank_account"
  ),
  array(
    "stripe_account" => "acct_XXXXX"
  )
));