4

我正在使用以下代码执行用户已在 Paypal.com 上批准的付款:

// Get the order object
$order_object = new Order($_GET["orderid"]);

 // Complete the payment
$payment = Payment::get($order_object->paypal_payment_id, $apiContext);

//Set the payer id
$order_object->SetPayerId($_GET["PayerID"]);

try
{
    // PaymentExecution object includes information necessary
    // to execute a PayPal account payment.
    // The payer_id is added to the request query parameters
    // when the user is redirected from paypal back to your site
    $execution = new PaymentExecution();
    $execution->setPayer_id($_GET["PayerID"]);

    //Execute the payment
    // (See bootstrap.php for more on `ApiContext`)
    $finished_payment = $payment->execute($execution, $apiContext); 
}
catch(PayPal\Exception\PPConnectionException $e)
{
    echo "<p>PPConnectionException - Already executed payment?</p>";
}

echo "Payment state: " . $finished_payment->getState() . '<br/>';
echo "Payment ID:" . $finished_payment->getId() . '<br/>';

如果我在执行它之前获得了订单的状态,它会返回created这很好,但是在使用此代码执行之后它会返回 state approved

approved如果这意味着交易已完成,这很好,但是在开发人员仪表板上,交易completed按我的预期显示!

为什么代码approved真的会返回completed

谢谢

更新:我刚刚检查了http://sandbox.paypal.com并以我的商家测试帐户和我使用的客户测试帐户登录,并且都说交易已完成。我可以证明这一点,因为如果我尝试重新执行订单,它会返回 500 错误。这真的很令人困惑,为什么它返回不一致的数据......

截图:

从上面的代码返回...

在此处输入图像描述

开发者网站上的订单视图... 在此处输入图像描述

是什么Approved意思Completed

4

2 回答 2

2

是的,通过此处的文档,批准意味着已完成:https ://developer.paypal.com/webapps/developer/docs/api/#execute-an-approved-paypal-payment 响应必须是“状态”:“已批准",如果一切顺利的话。

于 2013-08-19T11:00:36.040 回答
2

提问者无法区分付款和销售。

“已批准”是付款的最终满意状态。 https://developer.paypal.com/docs/api/#look-up-a-payment-resource

批准付款后,将创建销售。然后,您可以在 Payment JSON 的“transactions/related_resources”字段中找到它。“完成”是一种销售的快乐状态。

于 2016-01-04T11:14:06.750 回答