如何将paypal自适应支付与cake php 1.3版本集成?
Posted
技术标签:
【中文标题】如何将paypal自适应支付与cake php 1.3版本集成?【英文标题】:How do I integrate paypal adaptive payment with cake php 1.3 version? 【发布时间】:2013-05-16 08:20:03 【问题描述】:我在 Cakephp 1.3 中有一个应用程序,我需要集成最新的 paypal 自适应支付系统。我从贝宝网站获取代码示例以进行自适应支付。登录后我在这里得到代码https://www.x.com/developers/paypal/products/adaptive-payments。它为我提供了一个休息 API SDK,我可以在其中获取信用卡支付的代码。
require __DIR__ . '/../bootstrap.php';
use PayPal\Api\Address;
use PayPal\Api\Amount;
use PayPal\Api\CreditCard;
use PayPal\Api\Payer;
use PayPal\Api\Payment;
use PayPal\Api\FundingInstrument;
use PayPal\Api\Transaction;
$addr = new Address();
$addr->setLine1("3909 Witmer Road");
$addr->setLine2("Niagara Falls");
$addr->setCity("Niagara Falls");
$addr->setState("NY");
$addr->setPostal_code("14305");
$addr->setCountry_code("US");
$addr->setPhone("716-298-1822");
$card = new CreditCard();
$card->setType("visa");
$card->setNumber("4417119669820331");
$card->setExpire_month("11");
$card->setExpire_year("2019");
$card->setCvv2("012");
$card->setFirst_name("Joe");
$card->setLast_name("Shopper");
$card->setBilling_address($addr);
$fi = new FundingInstrument();
$fi->setCredit_card($card);
$payer = new Payer();
$payer->setPayment_method("credit_card");
$payer->setFunding_instruments(array($fi));
$amount = new Amount();
$amount->setCurrency("USD");
$amount->setTotal("1.00");
$transaction = new Transaction();
$transaction->setAmount($amount);
$transaction->setDescription("This is the payment description.");
$payment = new Payment();
$payment->setIntent("sale");
$payment->setPayer($payer);
$payment->setTransactions(array($transaction));
try
$payment->create($apiContext);
catch (\PPConnectionException $ex)
echo "Exception: " . $ex->getMessage() . PHP_EOL; var_dump($ex->getData());
exit(1);
有没有其他简单的方法可以在 Cakephp 中使用 paypal 实现自适应支付?
【问题讨论】:
【参考方案1】:您提供的代码示例是否来自 REST SDK?如果您尝试使用自适应付款,则不应使用它。 Adaptive Payments 没有直接的信用卡支付选项,这就是您提供的代码示例正在尝试做的事情。
这里是自适应支付 PHP SDK 的直接链接: https://github.com/paypal/adaptivepayments-sdk-php
【讨论】:
以上是关于如何将paypal自适应支付与cake php 1.3版本集成?的主要内容,如果未能解决你的问题,请参考以下文章
PayPal 自适应支付 API - 延迟链支付(PHP、JavaScript)
我不断收到关于 paypal php 自适应支付 API 支付的错误“您的支付无法完成......”