paypal - 我需要在 php 中通过 api 支付给 paypal 定期付款的总金额列表

标签 paypal payment-processing paypal-subscriptions

<分区>


想改进这个问题吗? 通过 editing this post 添加细节并澄清问题.

关闭 8 年前

任何人都可以告诉我如何通过 api 获取总付款列表及其 paypal 定期付款的金额

任何 NVP 或 SOAP 都会受到赞赏,但它应该是 php 代码 或任何引用资料

前- X 先生在我的网站上订阅了我的杂志服务,然后他们将被要求每 6 个月定期支付 450 美元

2 年后我想列出在该 profileid 上支付的总金额

最佳答案

您可以使用 TransactionSearch API并使用电子邮件地址或个人资料 ID 搜索给定的时间范围。这将为您提供与电子邮件地址相关的所有交易,或个人资料 ID,具体取决于您搜索的内容。

<?php

/** TransactionSearch NVP example; last modified 08MAY23.
 *
 *  Search your account history for transactions that meet the criteria you specify. 
*/

$environment = 'sandbox';   // or 'beta-sandbox' or 'live'

/**
 * Send HTTP POST Request
 *
 * @param   string  The API method name
 * @param   string  The POST Message fields in &name=value pair format
 * @return  array   Parsed HTTP Response body
 */
function PPHttpPost($methodName_, $nvpStr_) {
    global $environment;

    // Set up your API credentials, PayPal end point, and API version.
    $API_UserName = urlencode('my_api_username');
    $API_Password = urlencode('my_api_password');
    $API_Signature = urlencode('my_api_signature');
    $API_Endpoint = "https://api-3t.paypal.com/nvp";
    if("sandbox" === $environment || "beta-sandbox" === $environment) {
        $API_Endpoint = "https://api-3t.$environment.paypal.com/nvp";
    }
    $version = urlencode('51.0');

    // Set the curl parameters.
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $API_Endpoint);
    curl_setopt($ch, CURLOPT_VERBOSE, 1);

    // Turn off the server and peer verification (TrustManager Concept).
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);

    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_POST, 1);

    // Set the API operation, version, and API signature in the request.
    $nvpreq = "METHOD=$methodName_&VERSION=$version&PWD=$API_Password&USER=$API_UserName&SIGNATURE=$API_Signature$nvpStr_";

    // Set the request as a POST FIELD for curl.
    curl_setopt($ch, CURLOPT_POSTFIELDS, $nvpreq);

    // Get response from the server.
    $httpResponse = curl_exec($ch);

    if(!$httpResponse) {
        exit("$methodName_ failed: ".curl_error($ch).'('.curl_errno($ch).')');
    }

    // Extract the response details.
    $httpResponseAr = explode("&", $httpResponse);

    $httpParsedResponseAr = array();
    foreach ($httpResponseAr as $i => $value) {
        $tmpAr = explode("=", $value);
        if(sizeof($tmpAr) > 1) {
            $httpParsedResponseAr[$tmpAr[0]] = $tmpAr[1];
        }
    }

    if((0 == sizeof($httpParsedResponseAr)) || !array_key_exists('ACK', $httpParsedResponseAr)) {
        exit("Invalid HTTP Response for POST request($nvpreq) to $API_Endpoint.");
    }

    return $httpParsedResponseAr;
}

// Set request-specific fields.
$transactionID = urlencode('example_transaction_id');

// Add request-specific fields to the request string.
$nvpStr = "&TRANSACTIONID=$transactionID";

// Set additional request-specific fields and add them to the request string.
$startDateStr;          // in 'mm/dd/ccyy' format
$endDateStr;            // in 'mm/dd/ccyy' format
if(isset($startDateStr)) {
   $start_time = strtotime($startDateStr);
   $iso_start = date('Y-m-d\T00:00:00\Z',  $start_time);
   $nvpStr .= "&STARTDATE=$iso_start";
  }

if(isset($endDateStr)&&$endDateStr!='') {
   $end_time = strtotime($endDateStr);
   $iso_end = date('Y-m-d\T24:00:00\Z', $end_time);
   $nvpStr .= "&ENDDATE=$iso_end";
}

// Execute the API operation; see the PPHttpPost function above.
$httpParsedResponseAr = PPHttpPost('TransactionSearch', $nvpStr);

if("SUCCESS" == strtoupper($httpParsedResponseAr["ACK"]) || "SUCCESSWITHWARNING" == strtoupper($httpParsedResponseAr["ACK"])) {
    exit('TransactionSearch Completed Successfully: '.print_r($httpParsedResponseAr, true));
} else  {
    exit('TransactionSearch failed: ' . print_r($httpParsedResponseAr, true));
}

?>

关于paypal - 我需要在 php 中通过 api 支付给 paypal 定期付款的总金额列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15937071/

上一篇:php - 将 paypal 合并到我的 PHP 购物车中?

下一篇:php - 如何从每笔 Paypal 交易中提取一笔交易?

相关文章:

shopping-cart - 哪个 PayPal 按钮最适合这种情况?

ajax - Paypal 循环计费的退款交易

php - 在 Paypal ( Paypal 订阅)中首次定期付款时应用折扣优惠券代码

php - Paypal 订阅问题

选择 "Pay using your credit or debit card"时 PayPal 订阅按钮错误

Paypal自定义数据-安全问题

php - IPN 验证失败

payment-gateway - Braintree支持分期付款吗?

stripe-payments - 使用优惠券进行 Stripe 计划定价,无需向客户收费

php - 支付系统 - 在欧洲