2

直接支払いで定期支払いを使用しています(https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_WPRecurringPayments#id08669F0705Z

以下のようにパラメータを設定し、WORKING FINE、

$firstName = urlencode('MyName');//urlencode('customer_first_name');
$lastName = urlencode('MySurname');//urlencode('customer_last_name');
$creditCardType = urlencode('VISA');//urlencode('customer_credit_card_type');
$creditCardNumber = urlencode('455743552XXXXXXXX');//urlencode('customer_credit_card_number');
$expDateMonth = '07';//'cc_expiration_month';
$expDateYear = urlencode('2017');//urlencode('cc_expiration_year');
$padDateMonth = urlencode(str_pad($expDateMonth, 2, '0', STR_PAD_LEFT));
$amount =  urlencode('5');// urlencode('example_payment_amuont');
$startDate = urlencode("2012-07-17T0:0:0");
$endDate = urlencode("2012-07-21T0:0:0");

$billingPeriod = urlencode("Day");              // or "Day", "Week", "SemiMonth", "Year"
$billingFreq = urlencode("1");                      // combination of this and billingPeriod must be at most a year
$currencyID = urlencode("USD"); 

$nvpStr = "&CREDITCARDTYPE=$creditCardType".
          "&ACCT=$creditCardNumber".
          "&EXPDATE=$padDateMonth$expDateYear".
          "&FIRSTNAME=MyFirstName".
          "&LASTNAME=MyLastName".
          "&PROFILESTARTDATE=$startDate".
          "&PROFILEENDDATE=$endDate".     // **not working**
          "&BILLINGPERIOD=$billingPeriod".
          "&BILLINGFREQUENCY=$billingFreq".
          "&AMT=$amount&DESC=Test Recurring Payment";

$httpParsedResponseAr = PPHttpPost('CreateRecurringPaymentsProfile', $nvpStr);

現在、私の問題は終了日が設定されていないので、誰かが考えている場合は返信してください。 終了日を設定するためのパラメータが欲しいです。

ありがとう、キラン・シャルマ。

4

1 に答える 1

2

私はちょうど答えを見つけました、

発生するサイクル数を設定する「TOTALBILLINGCYCLES 」。

上記のように、$ billingPeriod = urlencode( "Day");を使用します。//サイクルは1日あたりです$billingFreq= urlencode( "1"); //頻度は1です。したがって、支払いは毎日収集されます

"&TOTALBILLINGCYCLES = 15" //このパラメータを使用すると、サイクルが15回行われるため、15日間で15回の支払いが行われます。

于 2012-09-03T10:01:50.637 に答える