Paypal PHP SDK 付款状态
Posted
技术标签:
【中文标题】Paypal PHP SDK 付款状态【英文标题】:Paypal PHP SDK payment status 【发布时间】:2019-08-07 11:25:45 【问题描述】:我正在使用贝宝 php sdk。我有以下代码:
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
require __DIR__ . '/vendor/PayPal-PHP-SDK/autoload.php';
$dev_ClientID = 'xxxxxxxxxx';
$dev_ClientSecret = 'xxxxxxxxxx';
$apiContext = new \PayPal\Rest\ApiContext(
new \PayPal\Auth\OAuthTokenCredential(
$dev_ClientID
,$dev_ClientSecret
)
);
$payer = new \PayPal\Api\Payer();
$payer->setPaymentMethod('paypal');
$amount = new \PayPal\Api\Amount();
$amount->setTotal('1.00');
$amount->setCurrency('USD');
$transaction = new \PayPal\Api\Transaction();
$transaction->setAmount($amount);
$redirectUrls = new \PayPal\Api\RedirectUrls();
$redirectUrls->setReturnUrl("https://www.somedomain.com/paypal_success.php")
->setCancelUrl("https://www.somedomain.com/paypal_cancel.php");
// Create the WebProfile
$presentation = new \PayPal\Api\Presentation();
$presentation->setLogoImage("http://www.yeowza.com/favico.ico")
->setBrandName("YeowZa! Paypal")
->setLocaleCode("US");
$inputfields = new \PayPal\Api\InputFields();
$inputfields ->getNoShipping(1);
$webProfile = new \PayPal\Api\WebProfile();
$webProfile
->setName('somename' . uniqid())
->setInputFields($inputfields)
->setTemporary(true);
$webProfileId = $webProfile->create($apiContext)->getId();
$payment = new \PayPal\Api\Payment();
$payment->setExperienceProfileId($webProfileId);
$payment->setIntent('sale')
->setPayer($payer)
->setTransactions(array($transaction))
->setRedirectUrls($redirectUrls);
try
$payment->create($apiContext);
echo "\n\nRedirect user to approval_url: " . $payment->getApprovalLink() . "\n";
catch (\PayPal\Exception\PayPalConnectionException $ex)
// This will print the detailed information on the exception.
echo $ex->getData();
?>
我得到了付款链接,但我仍然看到送货信息。
我已将 getNoShipping 定义为 true,可能挂钩的网络配置文件错误。所以这是一回事。我不确定的第二件事是这个。
我通过了付款并被重定向回 paypal_success.php,并带有 paymentId、token 和 PayerID。我将如何使用这些来接收有关交易的信息。我希望确保它确实发生了。
我尝试了以下方法:
$paymentId = $_GET["paymentId"];
$token = $_GET["token"];
$PayerID = $_GET["PayerID"];
echo "paymentId: " . $paymentId . "<br>";
echo "token: " .$token . "<br>";
echo "PayerID: " .$PayerID . "<br>";
$curl = curl_init("https://api.sandbox.paypal.com/v1/checkout/orders/$paymentId");
curl_setopt($curl, CURLOPT_POST, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HTTPHEADER, array(
'Authorization: Bearer ' . $token,
'Accept: application/json',
'Content-Type: application/json'
));
$response = curl_exec($curl);
$result = json_decode($response);
var_dump($result);
结果如下:
["error"]=> string(13) "invalid_token" ["error_description"]=> string(35) "令牌签名验证失败"
将感谢您提供的任何帮助。 谢谢
【问题讨论】:
是的,这将与您传递到订单中的体验资料 ID 相关联。 【参考方案1】:您可以使用以下电话获取付款详情
$payment_details = PayPal\Api\Payment::get($paymentId, $apiContext);
这里$apiContext
是您用来进行交易的API 凭据。
此外,如果您想使用 curl,那么以下端点
$curl = curl_init("https://api.sandbox.paypal.com/v1/checkout/orders/$paymentId");
获取付款详情不正确,您应该使用此端点$curl = curl_init("https://api.sandbox.paypal.com/v1/payments/payment/$paymentId");
【讨论】:
以上是关于Paypal PHP SDK 付款状态的主要内容,如果未能解决你的问题,请参考以下文章
PayPal Plus / PHP SDK - 使用银行帐户/借记卡付款
通过 PHP SOAP SDK 使用“买家在 PayPal 上付款”
使用 PayPal-PHP-SDK 进行第三方支付的 Paypal 沙盒测试