我有一个可以通过Paypal付款的平台。根据用户配置,可以通过以下方式支付贝宝佣金:
我需要设置由谁支付费用以将其发送到Paypal,但是我在Paypal API文档中找不到该方法。
我正在使用PHP,Yii2框架并使用de Paypal REST API。
$payment = Payment::get($paymentId, $apiContext);
$execution = new PaymentExecution();
$execution->setPayerId($payerID);
$transaction = new Transaction();
$amount = new Amount();
$amount->setCurrency($currency);
$amount->setTotal($total);
$transaction->setAmount($amount);
$execution->addTransaction($transaction);
$payment->execute($execution, $apiContext);
付款后,我已经向我收取了费用,但为时已晚。