如何在Stripe中找到PLATFORM_SECRET_KEY

问题描述 投票:0回答:1

如何在我的测试条带帐户中获得PLATFORM_SECRET_KEY我使用条带连接付款

\Stripe\Stripe::setApiKey(PLATFORM_SECRET_KEY);
    $tr = \Stripe\Payout::create(array(
      "amount" => 24784,
      "currency" => "usd",
      "source_type" => "bank_account"
    ));
php stripe-payments stripe-connect
1个回答
0
投票

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

您将充当代表已连接帐户发出API请求的平台,这就是您使用自己的API密钥的原因。您还需要在Stripe-Account标头中传递已连接的帐户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"
  )
));
© www.soinside.com 2019 - 2024. All rights reserved.