您好我正在使用PHP Paypal SDK,以下代码在输入重定向网址时有效。但是,我正在尝试设置直接卡支付,这是否需要重定向网址,因为所有示例代码似乎都将其删除?
当使用重定向url对象时,我的应用程序只是将我重定向到Paypal api沙箱并要求登录帐户(这不是直接卡支付)
继承我的代码:
致命错误:未捕获的异常 '贝\异常\ PayPalConnectionException'有消息'得到了Http 访问时响应代码400 https://api.sandbox.paypal.com/v1/payments/payment&#39。在 /Applications/MAMP/htdocs/tealtique/library/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalHttpConnection.php 在第176行
我的代码不包含名称间距,因为文件是控制器对象,名称间距没有问题。
$apiContext = $this->paypal_access_token();
$payment_description = 'Payment to comapany';
$invoice_number = uniqid();
$addr = new BaseAddress();
$addr->setLine1($_POST['adr_line1']);
$addr->setCity($_POST['adr_city']);
$addr->setCountryCode($_POST['adr_country']);
$addr->setPostalCode($_POST['adr_postal_code']);
$addr->setState($_POST['adr_county']);
$card = new CreditCard();
$card->setNumber($_POST['card_number']);
$card->setType($_POST['card_type']);
$card->setExpireMonth($_POST['card_expire_mounth']);
$card->setExpireYear($_POST['card_expire_year']);
$card->setCvv2($_POST['card_cvv2']);
$card->setFirstName($_POST['card_first_name']);
$card->setLastName($_POST['card_last_name']);
$card->setBillingAddress($addr);
$fi = new FundingInstrument();
$fi->setCreditCard($card);
$payer = new Payer();
$payer->setPaymentMethod("paypal");
$item = new Item();
$item->setName('Payment Instalment')
->setCurrency(PAYPAL_CURRENCY)
->setQuantity(1)
->setPrice($_POST['payment_amount']);
$itemList = new ItemList();
$itemList->setItems(array($item));
$details = new Details();
$details->setShipping(0)
->setFee(PAYPAL_FEE)
->setTax(0)
->setSubtotal($_POST['payment_amount']);
$amount = new Amount();
$amount->setCurrency(PAYPAL_CURRENCY)
->setTotal($_POST['payment_amount'])
->setDetails($details);
$transaction = new Transaction();
$transaction->setAmount($amount)
->setItemList($itemList)
->setDescription($payment_description)
->setInvoiceNumber($invoice_number);
$payment = new Payment();
$payment->setIntent("sale")
->setPayer($payer)
->setTransactions(array($transaction));
try {
$payment->create($apiContext);
} catch (Exception $ex) {
echo 'exception : <pre>';print_r(json_decode($ex->getData()));
exit(1);
}
//$approvalUrl = $payment->getApprovalLink();
//header('location:' . $approvalUrl);
我对如何使用sdk捕获错误消息感到有点困惑,因为Paypal开发人员网站上的文档只是说明了哪些错误会重新启动以及它们意味着什么而不是如何捕获它们。
答案 0 :(得分:1)
首先要做的事情:
您可以捕获PayPalHttpConnection异常并打印详细消息,了解失败的原因。为此,请在代码周围添加try catch块。
try {
$creditCard->create($apiContext);
echo $creditCard;
}
catch (\PayPal\Exception\PayPalConnectionException $ex) {
echo $ex->getData();
}
我会将其添加到https://github.com/paypal/PayPal-PHP-SDK/wiki
的其中一个Wiki页面其次,如果您打算使用信用卡直接付款,则无需拥有重定向网址。您可以按照https://paypal-php-sdk.herokuapp.com/
提供的示例Payments using credit card information
进行操作
此外,您可以通过一个命令在本地计算机上轻松设置示例,因为它已随SDK一起提供。只需按照given here
说明操作即可