温馨提示×

PHP中PayPal的交易记录如何查询

PHP
小樊
94
2024-08-07 19:31:28
栏目: 编程语言

要查询PayPal的交易记录,可以通过PayPal的API来实现。以下是使用PHP编写的示例代码:

<?php

$paypal_api_username = 'YOUR_PAYPAL_API_USERNAME';
$paypal_api_password = 'YOUR_PAYPAL_API_PASSWORD';
$paypal_api_signature = 'YOUR_PAYPAL_API_SIGNATURE';

$api_endpoint = 'https://api-3t.paypal.com/nvp';
$version = '204.0';

// 构建API请求参数
$request_params = array(
    'USER' => $paypal_api_username,
    'PWD' => $paypal_api_password,
    'SIGNATURE' => $paypal_api_signature,
    'METHOD' => 'TransactionSearch',
    'VERSION' => $version,
    'STARTDATE' => '2022-01-01T00:00:00Z', // 开始日期
    'ENDDATE' => '2022-01-31T23:59:59Z', // 结束日期
);

// 发送API请求
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $api_endpoint);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($request_params));
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($curl);
curl_close($curl);

// 处理API响应
if (!$response) {
    die('无法连接到PayPal API');
}

parse_str($response, $response_array);

// 输出交易记录
if ($response_array['ACK'] == 'Success') {
    $transactions = $response_array['L_TRANSACTIONID0']; // 交易记录数组
    foreach ($transactions as $transaction) {
        echo '交易ID: ' . $transaction . '<br>';
    }
} else {
    echo '获取交易记录失败: ' . $response_array['L_LONGMESSAGE0'];
}

?>

请替换示例代码中的YOUR_PAYPAL_API_USERNAMEYOUR_PAYPAL_API_PASSWORDYOUR_PAYPAL_API_SIGNATURE为您的PayPal API凭据,然后设置开始日期和结束日期来查询特定时间范围内的交易记录。运行代码后,将输出符合条件的交易记录ID。

0