在GitHub example中遵循了代码,并在此处提出了一些建议(additional error messages和an error method),没有任何事情可以使我深信:$payment->create($this->_api_context);
并深入到try块的异常处理,或超出一般错误消息的范围:
访问时的HTTP响应代码400 https://api.sandbox.paypal.com/v1/payments/payment。
这是我使用的方法:
public function __construct() {
// PayPal API context.
$configPayPal = \Config::get('paypal');
$this->_api_context = new ApiContext(
new OAuthTokenCredential(
$configPayPal['client_id'],
$configPayPal['secret']
)
);
$this->_api_context->setConfig($configPayPal['settings']);
}
public function makePayment(Request $request) {
$payer = new Payer();
$payer->setPaymentMethod('paypal');
$orderForPayment = $request->get('orderForPayment');
$orderTotal = $request->get('orderTotal');
$orderTax = $request->get('orderTax');
$shipping = 0.66;
$items = [];
foreach ($orderForPayment as $index => $item):
$items[$index] = new Item();
$items[$index]->setName($item['name'])
->setCurrency('GBP')
->setQuantity($item['qty'])
->setPrice($item['subtotal']);
endforeach;
$itemsList = new ItemList();
$itemsList->setItems($items);
$details = new Details();
$details->setShipping($shipping)
->setTax($orderTax)
->setSubtotal($orderTotal);
$amount = new Amount();
$amount->setCurrency('GBP')
->setTotal($orderTotal + $orderTax + $shipping)
->setDetails($details);
$transaction = new Transaction();
$transaction->setAmount($amount)
->setItemList($itemsList)
->setDescription("Your transaction description.");
$redirect_urls = new RedirectUrls();
$redirect_urls->setReturnUrl(URL::route('getPaymentStatus'))
->setCancelUrl(URL::route('getPaymentStatus'));
$payment = new Payment();
$payment->setIntent("Sale")
->setPayer($payer)
->setRedirectUrls($redirect_urls)
->setTransactions(array($transaction));
//dd($payment->create($this->_api_context)); exit;
try {
$payment->create($this->_api_context);
} catch (PayPal\Exception\PayPalConnectionException $ex) {
// Prints the Error Code
echo $ex->getCode();
// Prints the detailed error message
echo $ex->getData();
echo $this->PayPalError($ex);
} catch (Exception $ex) {
echo $this->PayPalError($ex);
}
foreach ($payment->getLinks() as $link) {
if ($link->getRel() == 'approval_url') {
$redirect_url = $link->getHref();
break;
}
}
// Add payment ID to the session.
\Session::put('paypal_payment_id', $payment->getId());
if (isset($redirect_url)) {
// Redirect to PayPal.
return Redirect::away($redirect_url);
}
\Session::put('error', "Unknown error occurred");
return Redirect::route('makePayment');
}
我已经通过方法向下检查了值,以确保它们是整数而不是字符串。我尝试过在GBP和USD之间交换货币。
我以前没有使用过PayPal的API,所以可能我出了点问题,但是通用错误正在终止调试过程。
在测试时,我决定发送到以下项目:
$itemsList->setItems(array());
...而且有效。
因此,如果我发送邮件,我会收到一个错误消息,但是如果我没有发送,我将会成功。
我可能是错的,但这似乎是沙箱本身的错误。
在“ config / paypal.php”文件中,我有:
<?php
return [
'client_id' => env('PAYPAL_CLIENT_ID'),
'secret' => env('PAYPAL_SECRET'),
'settings' => array(
'mode' => env('PAYPAL_MODE'),
'http.ConnectionTimeOut' => 3000,
'log.LogEnabled' => true,
'log.FileName' => storage_path() . '/logs/paypal.log',
'log.LogLevel' => 'ERROR'
),
];
答案 0 :(得分:0)
响应代码显示400 Bad Request
,因此您的请求无法正常工作。
但是我看不到您对$_apiContext
的实例化。
我想您还没有为沙箱配置上下文。
Mabye,您应该阅读以下文章:PayPal PHP SDK: Making First Call
编辑:
试试:
$this->_api_context->setConfig(["mode" => "sandbox"]);
PS:事件虽然已添加了实例化,但并不是解决该问题所需的全部信息。
答案 1 :(得分:0)
事实证明,正如我所料,由于意外的类型转换,计算存在一些问题。但是,主要问题在于pure 3 ~ StateT (\s -> Identity (3, s))
函数,其中foreach()
变量是所涉及产品的Shopify API ID,具有讽刺意味。
最后,代码是:
$index