如何在Stripe Omnipay上设置申请费? 当我使用条纹的PHP库时,它工作正常但无法使用Omnipay。
错误讯息: 只能在代表另一个帐户发出请求时使用application_fee(使用OAuth密钥,Stripe-Account标头或目标参数)。
$formData = [
'number' => '4242424242424242',
'expiryMonth' => '8',
'expiryYear' => '2018',
'cvv' => '123',
'firstName' => 'John',
'lastName' => 'Wags',
'email' => 'u@aaxxx.com' ,
];
$response = $gateway->purchase(
[
'amount' => '16.00',
'applicationFee' => '2.00',
'destination' => 'acct_24xxxxxxxxxxxxxx',
'currency' => 'AUD',
'card' => $formData,
'receipt_email' => 'xx@aaxxx.com',
'description' => 'Ref:10201'
]
)->send();
我在这里做错了吗?
答案 0 :(得分:0)