我想在我的Phalcon 3 Web应用程序中集成paypal。如果有人能在这个过程中帮助我,那将是很棒的。
进行谷歌搜索后;我遇到了这些资源:https://github.com/MiladAlshomary/paypal_phalcon和https://github.com/paypal/PayPal-PHP-SDK
具体来说,我正在寻找一个示例/教程,它向我展示如何在phalcon 3中集成paypal。
这里要求的是我的代码如何:
我的config.php看起来像这样:
"paypal" => [
"apiUsername" =>"xxxx",
"apiPassword" =>"xxxxx",
"apiSignature" =>"",
"apiLive" => "false",
"returnUrl" => "http://paypal/confirm/",
"cancelUrl" => "http://paypal/cancel/",
"payment_description" => "Purchasing with paypal",
"payment_amount" => 50
],
xxxx被我的沙箱凭据替换。我正在使用来自控制器的buyAction进行这些更改。
$config = new Phalcon\Config\Adapter\Php(__DIR__ . '/../../app/config/config.php');
我已将该库包含在位于公共文件夹中的index.php中,代码如下:include DIR . "/../library/Paypal.php";