gpt4 book ai didi

laravel-4 - 如何使用 OmniPay 获得 PayPal_Express 响应?

转载 作者:太空宇宙 更新时间:2023-11-03 15:43:58 24 4
gpt4 key购买 nike

我到处搜索并在 OmniPays github 上转了一圈,试图找到有关如何在 OmniPay 中实现 PayPal Express 的文档。

        $response = Omnipay::purchase([
'amount' => $total,
'encodedTestIDs' => serialize($payForTestID),
'returnUrl' => 'http://php.bhiceu.com/payment/return',
'cancelUrl' => 'http://php.bhiceu.com/payment/cancel'
])->send();
//dd($response);
//die;
if ($response->isRedirect()) {
// redirect to offsite payment gateway
$response->redirect();
} else {
// payment failed: display message to customer
echo $response->getMessage();
}

上面的代码成功地将我以适当的金额发送到 PayPal,当我取消或检查时,我返回到适当的 URLS,但是我得到的只是 paypal token ,我找不到任何关于如何处理的文档.

最佳答案

您需要使用 completePurchase() 方法完成购买。

查看 https://github.com/thephpleague/omnipay-example/blob/master/index.php#L203-L218 中的 omnipay/示例代码

关于laravel-4 - 如何使用 OmniPay 获得 PayPal_Express 响应?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24370623/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com