notifyUrl响应和completePurchase响应之间有什么区别?

时间:2017-04-26 14:43:08

标签: paypal paypal-ipn paypal-sandbox omnipay

我尝试使用omnipay / paypal,我将此代码用于returnUrl页面:

public function completePayment(Request $request)
{

    //return 'pagina dopo acquisto';
    $gateway = Omnipay::create('PayPal_Express');
    $gateway->setUsername('blastor_89-facilitator_api1.msn.com');
    $gateway->setPassword('BEWB2BEW9CHCV3EQ');
    $gateway->setSignature('AFcWxV21C7fd0v3bYYYRCpSSRl31AC5Dp4AnVYBnMIkNFxSQTj8h.lqD');
    $gateway->setTestMode(true);

    $params = session()->get('params');
    $response = $gateway->completePurchase($params)->send();
    $paypalResponse = $response->getData();
    //$this->store($paypalResponse);
    if(isset($paypalResponse['PAYMENTINFO_0_ACK']) && $paypalResponse['PAYMENTINFO_0_ACK'] === 'Success') {
        // here you process the response. Save to database ...

    }
    else {
        // Failed transaction ...
    }
}

它用$ paypalResponse响应,而如果我使用notifyUrl页面做什么做notifyUrl响应?有什么区别?

1 个答案:

答案 0 :(得分:0)

这两个回答完全不同,尽管它们包含相同的基本概念。

完整的购买回复包含您调用completePurchase()的数据。通知响应具有通过通知(PayPal IPN)调用馈送到您的应用程序的数据。我建议您从每个数据中转储数据以进行查看。