定期付款Paypal快速结账.....

时间:2012-03-09 12:02:13

标签: php paypal payment-gateway paypal-subscriptions

当我关注paypal现有示例我无法获得paypal快速结账时的订单信息我怎么能这样做我给我的地方我没有得到如下信息 -

/** SetExpressCheckout NVP example; last modified 08MAY23.
 *
 *  Initiate an Express Checkout transaction. 
*/

$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('super_secret_username');
    $API_Password = urlencode('super_secret_password');
    $API_Signature = urlencode('super_secret_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.
$paymentAmount = urlencode('105.87');
$currencyID = urlencode('USD');                         // or other currency code ('GBP', 'EUR', 'JPY', 'CAD', 'AUD')
$paymentType = urlencode('Authorization');              // or 'Sale' or 'Order'

$returnURL = urlencode("http://localhost/paypal/new/success.php");
$cancelURL = urlencode('http://localhost/paypal/new/cencel.php');

// Add request-specific fields to the request string.
$nvpStr = "&Amt=$paymentAmount&ReturnUrl=$returnURL&CANCELURL=$cancelURL&PAYMENTACTION=$paymentType&CURRENCYCODE=$currencyID";


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

if("SUCCESS" == strtoupper($httpParsedResponseAr["ACK"]) || "SUCCESSWITHWARNING" == strtoupper($httpParsedResponseAr["ACK"])) {
    // Redirect to paypal.com.
    $token = urldecode($httpParsedResponseAr["TOKEN"]);
    $payPalURL = "https://www.paypal.com/webscr&cmd=_express-checkout&token=$token";
    if("sandbox" === $environment || "beta-sandbox" === $environment) {
        $payPalURL = "https://www.$environment.paypal.com/webscr&cmd=_express-checkout&token=$token";
    }
    header("Location: $payPalURL");
    exit;
} else  {
    exit('SetExpressCheckout failed: ' . print_r($httpParsedResponseAr, true));
}

使用此脚本如何获得订单总数。

我需要使用Payal Express Checkout支付Paypal定期付款的脚本。我还需要更新并取消定期付款。

1 个答案:

答案 0 :(得分:0)

要发布succsessifuly您的代码,必须设置一些额外的参数。如果比较两个例子,我还会清除你会发现的一些其他错误。主要的是:

  1. $returnURL$cancelURL必须是真实的网址且没有方法urlencode()
  2. $version必须设置为urlencode('124.0');
  3. SetExpressCheckout的参数必须如示例中那样设置。
  4. 我建议直播测试,只需在$0.01

    中设置价格即可

    请按照以下示例:

  5.  
    
    
    /** SetExpressCheckout NVP example; last modified 08MAY23. * * Initiate an Express Checkout transaction. */ $environment = 'live'; // 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('super_secret_username');
    $API_Password = urlencode('super_secret_password');
    $API_Signature = urlencode('super_secret_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('124.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. $paymentAmount = urlencode('105.87'); $currencyID = urlencode('USD'); // or other currency code ('GBP', 'EUR', 'JPY', 'CAD', 'AUD') $paymentType = urlencode('Authorization'); // or 'Sale' or 'Order'
    $returnURL = "http://localhost/paypal/new/success.php"; // Please provide a real URL !!!!!
    $cancelURL = 'http://localhost/paypal/new/cencel.php'; // Please provide a real URL !!!!!
    //Parameters for SetExpressCheckout, which will be sent to PayPal
    $paypal_data = array( 'RETURNURL' => $returnURL,
    'CANCELURL' => $cancelURL,
    'PAYMENTREQUEST_0_CURRENCYCODE' => $$currencyID,
    'PAYMENTREQUEST_0_PAYMENTACTION'=> 'SALE',
    'PAYMENTREQUEST_0_DESC' => 'Hosted Saas Tier 1 and Community Management Services',
    'PAYMENTACTION' => $paymentType,
    'L_BILLINGTYPE0' => 'RecurringPayments',
    'L_BILLINGAGREEMENTDESCRIPTION0'=> 'Description of Community Management Services',
    'L_PAYMENTREQUEST_0_NAME0' => 'Community Management Services 8 hours for $0.01',
    'L_PAYMENTREQUEST_0_NUMBER0' => '010101',
    'L_PAYMENTREQUEST_0_QTY0' => '1',
    'L_PAYMENTREQUEST_0_AMT0' => $paymentAmount,

    /** * If you want second recurring payment in the same session * 'L_BILLINGTYPE1' => 'RecurringPayments', * 'L_BILLINGAGREEMENTDESCRIPTION1'=> 'Description of Hosted Saas Tier 1', * 'L_PAYMENTREQUEST_0_NAME1' => 'Hosted Saas Tier 1', * 'L_PAYMENTREQUEST_0_NUMBER1' => '212121', * 'L_PAYMENTREQUEST_0_QTY1' => '1', * 'L_PAYMENTREQUEST_0_AMT1' => '0.02', */
    'PAYMENTREQUEST_0_ITEMAMT' => $paymentAmount, 'PAYMENTREQUEST_0_AMT' => $paymentAmount ); $nvpStr = http_build_query($paypal_data);
    // Execute the API operation; see the PPHttpPost function above.
    $httpParsedResponseAr = PPHttpPost('SetExpressCheckout', $nvpStr);
    if("SUCCESS" == strtoupper($httpParsedResponseAr["ACK"]) || "SUCCESSWITHWARNING" == strtoupper($httpParsedResponseAr["ACK"])) {
    // Redirect to paypal.com.
    $token = urldecode($httpParsedResponseAr["TOKEN"]);
    $payPalURL = "https://www.paypal.com/webscr&cmd=_express-checkout&token=$token";
    if("sandbox" === $environment || "beta-sandbox" === $environment) {
    $payPalURL = "https://www.$environment.paypal.com/webscr&cmd=_express-checkout&token=$token";
    }
    header("Location: $payPalURL");
    exit;
    } else {
    exit('SetExpressCheckout failed: ' . print_r($httpParsedResponseAr, true));
    }
相关问题