gpt4 book ai didi

paypal - 使用 PayPal PHP SDK 检索 PayPal 历史记录

转载 作者:太空宇宙 更新时间:2023-11-03 16:31:12 25 4
gpt4 key购买 nike

我想问是否可以使用某些 PHP SDK 检索用户的 PayPal 历史记录。我在谷歌上找到了,但没有找到任何有用的信息,能给我一些起点吗?我不知道是否使用 REST API我可以完成这项工作,或者我需要另一个 SDK,例如 SDK Core和例子对我来说不是很清楚

最佳答案

您可以使用 Merchant SDK 中的 TransactionSearch API 搜索交易。有一个 example关于如何做:

$transactionSearchRequest = new TransactionSearchRequestType();
$transactionSearchRequest->StartDate = $_REQUEST['startDate'];
$transactionSearchRequest->EndDate = $_REQUEST['endDate'];
$transactionSearchRequest->TransactionID = $_REQUEST['transactionID'];

$tranSearchReq = new TransactionSearchReq();
$tranSearchReq->TransactionSearchRequest = $transactionSearchRequest;

/*
* ## Creating service wrapper object
Creating service wrapper object to make API call and loading
Configuration::getAcctAndConfig() returns array that contains credential and config parameters
*/
$paypalService = new PayPalAPIInterfaceServiceService(Configuration::getAcctAndConfig());
try {
/* wrap API method calls on the service object with a try catch */
$transactionSearchResponse = $paypalService->TransactionSearch($tranSearchReq);
} catch (Exception $ex) {
include_once("../Error.php");
exit;
}
if(isset($transactionSearchResponse)) {
echo "<table>";
echo "<tr><td>Ack :</td><td><div id='Ack'>$transactionSearchResponse->Ack</div> </td></tr>";
echo "</table>";
echo "<pre>";
print_r($transactionSearchResponse);
echo "</pre>";
}

看看 API reference限制和其他变量。

关于paypal - 使用 PayPal PHP SDK 检索 PayPal 历史记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23612407/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com