0

我在 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 实现自适应支付?

4

1 回答 1

0

您提供的代码示例是从 REST SDK 提供的吗?如果您尝试使用自适应付款,则不应使用它。Adaptive Payments 没有直接的信用卡支付选项,这就是您提供的代码示例正在尝试做的事情。

这是自适应支付 PHP SDK 的直接链接: https ://github.com/paypal/adaptivepayments-sdk-php

于 2013-05-22T18:34:14.100 回答