I'm trying to make one time and recurring payment using Payflow in sandbox mode.
Here is my code:
$sandbox = TRUE;
$api_endpoint = 'https://pilot-payflowpro.paypal.com';
$VENDOR = '***abcd';
$PARTNER = 'PayPal';
$PWD = '**ab#$12345';
$USER = '***abcd';
$secureTokenId = uniqid('', true);
if ($payment_type == 'Non Recurring') {
// Store request params in an array
$request_params = array
(
'USER' => $USER,
'PWD' => $PWD,
'PARTNER' => $PARTNER,
'VENDOR' => $VENDOR,
'TRXTYPE' => 'A',
'TENDER'=> 'C',
'ACTION' => 'A',
'ACCT' => $results[0]->cerditcardno,
'AMT' => $price,
'EXPDATE' => $results[0]->cardexpiresmounth.$results[0]->cardexpiresyear,
'CVV2' => $results[0]->cvc,
'IPADDRESS' => $_SERVER['REMOTE_ADDR'],
'FIRSTNAME' => $results[0]->display_name,
'LASTNAME' => $results[0]->lastname,
'STREET' => $results[0]->Address,
'CITY' => $results[0]->city,
'STATE' => $results[0]->state,
'COUNTRYCODE' => 'US',
'ZIP' => $results[0]->zipcode,
);
// Loop through $request_params array to generate the NVP string.
$nvp_string1 = '';
foreach($request_params as $var=>$val){
$nvp_string1 .= '&'.$var.'='.$val;
}
$nvp_string = substr($nvp_string1, 1);
// Send NVP string to PayPal and store response
$curl = curl_init();
curl_setopt($curl, CURLOPT_VERBOSE, 1);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_TIMEOUT, 60);
curl_setopt($curl, CURLOPT_URL, $api_endpoint);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $nvp_string);
$result = curl_exec($curl);
curl_close($curl);
$paypalResponse = array();
parse_str($result, $paypalResponse);
$paypal_result = $paypalResponse['RESULT'];
$securetoken = $paypalResponse['SECURETOKEN'];
$securetoken_id = $paypalResponse['SECURETOKENID'];
$respmsg = $paypalResponse['RESPMSG'];
$payload=json_encode($paypalResponse);
$paymenttable=$wpdb->prefix."payments";
$insert_txn = "INSERT INTO $paymenttable(`txn_id`,`status`,`booking_id`,`amount`,`payload`,`timestamp`) VALUES ('$txn_id','$respmsg','$book_id','$amount','$payload',UNIX_TIMESTAMP(NOW()))";
$insert_txn_query = $wpdb->query($insert_txn);
// Parse the API response
if($respmsg == 'Approved'){
$bookingtable=$wpdb->prefix."booking";
$wpdb->query("UPDATE $bookingtable SET subscription_status='Active' WHERE id='$booking_id'");
$payment_success = 1;
}
else{
$payment_success = 0;
}
}
else{
if ($_POST['frequency_id'] == 'Every week' ) {
$billing_period = 'Week';
$billing_frequency = 52;
}
elseif ($_POST['frequency_id'] == 'Every 2 weeks') {
$billing_period = 'SemiMonth';
$billing_frequency = 1;
}
elseif ($_POST['frequency_id'] == 'Every 4 weeks') {
$billing_period = 'Month';
$billing_frequency = 12;
}
// Store request params in an array
$request_params = array
(
'TRXTYPE' => 'A',
'TENDER'=> 'C',
'ACTION' => 'A',
'VERBOSITY' => 'MEDIUM',
'USER' => $USER,
'PWD' => $PWD,
'PARTNER' => $PARTNER,
'VENDOR' => $VENDOR,
'PROFILENAME' => 'RegularSubscription',
'ACCT' => $results[0]->cerditcardno,
'AMT' => $price,
'EXPDATE' => $results[0]->cardexpiresmounth.$results[0]->cardexpiresyear,
'CVV2' => $results[0]->cvc,
'START' => date("mdY"),
'TERM' => '0',
'PAYPERIOD' => $billing_period, #Period of time between billings
'MAXFAILEDPAYMENTS' => 3, #Maximum failed payments before suspension of the profile
'OPTIONALTRX' => 'S',
'OPTIONALTRXAMT' => '2.00',
'IPADDRESS' => $_SERVER['REMOTE_ADDR'],
'CREATESECURETOKEN' => 'Y',
'SECURETOKENID' => $secureTokenId,
'FIRSTNAME' => $results[0]->display_name,
'LASTNAME' => $results[0]->lastname,
'STREET' => $results[0]->Address,
'CITY' => $results[0]->city,
'STATE' => $results[0]->state,
'COUNTRYCODE' => 'US',
'ZIP' => $results[0]->zipcode,
);
// Loop through $request_params array to generate the NVP string.
$nvp_string1 = '';
foreach($request_params as $var=>$val){
$nvp_string1 .= '&'.$var.'='.$val;
}
$nvp_string = substr($nvp_string1, 1);
// setting the curl parameters.
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $api_endpoint);
curl_setopt($curl, CURLOPT_VERBOSE, 1);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); // Make it true for live url.
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($curl, CURLOPT_TIMEOUT, 60);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $nvp_string);
$result = curl_exec($curl);
// Check if any error occurred
if(curl_errno($curl))
{
echo 'Curl error: ' . curl_error($curl);
}
curl_close($curl);
$paypalResponse = array();
parse_str($result, $paypalResponse);
$paypal_result = $paypalResponse['RESULT'];
$securetoken = $paypalResponse['SECURETOKEN'];
$securetoken_id = $paypalResponse['SECURETOKENID'];
$respmsg = $paypalResponse['RESPMSG'];
}
And this is PayPal response I'm getting:
Array
(
[RESULT] => 0
[RESPMSG] => Approved
[SECURETOKEN] => 9vaaCvieCA0arm7qBM87FrAgw
[SECURETOKENID] => 5853a15a7716b1.59486056
)
But, I'm not getting any transaction ID and I am unable to see any transaction in PayPal sandbox account. Also when I login to manager account, there is no profile for recurring billing under Service Settings.
What am I doing wrong?
I think you are passing CREATESECURETOKEN=Y for creating a profile which you don't need to. Even the secure token id. Below is sample payload for creating a recurring profile
Payload:
Documentation: https://developer.paypal.com/docs/classic/payflow/recurring-billing/