这是我收到错误的条带代码
提供的密钥无法访问条带
中的帐户
\Stripe\Stripe::setApiKey('sk_test_...');
$fees=($request->amount*10)/100;
$fees=$fees*100;
$withfee = \Stripe\Charge::create(
array(
"amount" => 10000,//1000, //$amount amount in cents
"currency" => "usd",
"source" => "tok_1BGovzDnnXvdHsSaayDkULRU",//'tok_18L6hjL6useUrEYbtObKz15s',
//$token
"description" => "Example charge",//"Example charge", //$title
"application_fee" => 1000 // amount in cents //$fees
),
array("stripe_account" => "cus_Be21HSwLO1XMhF" ) // $acc_token
);
答案 0 :(得分:3)
您正在stripe_account
字段中传递客户ID("cus_..."
)。
processing a charge with Connect时,您需要提供代表您正在处理费用的帐户ID("acct_..."
)。 Customers是付款来源(即他们提供资金),而accounts是付款目的地(即他们收到资金)。