Я использую «Интеграцию Omnipay с PayPal Express Checkout [symfony2.5]», и это подразумевается для класса
пространства имен Atcop \ BookBundle \ Libs;
использование Omnipay \ Common\ GatewayFactory;
class Paypal {
protected $gateway = null;
private static $CURRENCY = "USD";
public function __construct() {
$this->gateway = GatewayFactory::create('PayPal_Express');
$this->gateway->setUsername('*********');
$this->gateway->setPassword('**********');
$this->gateway->setSignature('**************');
$this->gateway->setTestMode(true);
}
public function sendPurchase($parameters = []){
$payArray = [
'amount' => 58.00,
'description' => $parameters['description'],
'currency' => self::$CURRENCY,
'transactionId' => $parameters['transactionId'],
'returnUrl' => $parameters['returnUrl'],
'cancelUrl' => $parameters['cancelUrl']
];
return $this->gateway->purchase($payArray)->send();
}
public function complete($reference, $payerId) {
$completePayData = [
'amount' => 58.00,
'description' => 'Buy the currencies book - step by step',
'transactionReference' => $reference,
'payerId' => $payerId,
];
$response = $this->gateway->completePurchase($completePayData)->send();
if($response->isSuccessful()){
return $response->getData();
}
return false;
}
}
После завершения все в порядке, и я вижу уведомления и квитанцию об этой транзакции на панели инструментов, но балансне меняется у продавца и покупателя ??? !!!