When I send this NVP on live PayPal it returns Error code 10527 "This transaction cannot be processed. Please enter a valid credit card number and type."
I made a PayPal API class in PHP to facilitate NVP API calls:
Class PayPal {
protected $curl;
protected $version;
protected $username;
protected $password;
protected $signature;
function __construct() {
include "pp.php"; //includes credentials and version 65.0
$this->curl = curl_init();
curl_setopt($this->curl , CURLOPT_URL, $endpoint);
curl_setopt($this->curl , CURLOPT_VERBOSE, 1);
curl_setopt($this->curl, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($this->curl, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($this->curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($this->curl, CURLOPT_POST, 1);
$this->version = $version;
$this->username = urlencode($username);
$this->password = urlencode($password);
$this->signature = urlencode($signature);
}
public function api_call($method, $params=array()) {
$nvp = 'METHOD='.$method.'&VERSION='.$this->version.'&PWD='.$this->password.'&USER='.$this->username.'&SIGNATURE='.$this->signature;
foreach ($params as $key=>$param) {
$nvp .= '&'.strtoupper($key).'='.urlencode($param);
}
curl_setopt($this->curl, CURLOPT_POSTFIELDS, $nvp);
$response = curl_exec($this->curl);
$response_array = explode('&', $response);
foreach ($response_array as $value) {
$value_array = explode("=", $value);
if(count($value_array) > 1) {
$return_values[$value_array[0]] = urldecode($value_array[1]);
}
}
return $return_values;
}
}
Then elsewhere I have this:
$paypal = new PayPal();
$paypal_data['FIRSTNAME'] = urlencode($_POST['payment']['firstname']);
$paypal_data['LASTNAME'] = urlencode($_POST['payment']['lastname']);
$paypal_data['CREDITCARDTYPE'] = urlencode($_POST['payment']['creditcardtype']);
$paypal_data['ACCT'] = urlencode($_POST['payment']['acct']);
$paypal_data['CVV2'] = urlencode($_POST['payment']['cvv2']);
$paypal_data['EXPDATE'] = urlencode($_POST['payment']['expmonth'].$_POST['payment']['expyear']);
$paypal_data['STREET'] = urlencode($_POST['payment']['street']);
if ($_POST['payment']['street2']) {
$paypal_data['STREET2'] = urlencode($_POST['payment']['street2']);
}
$paypal_data['CITY'] = urlencode($_POST['payment']['city']);
$paypal_data['STATE'] = urlencode($_POST['payment']['state']);
$paypal_data['COUNTRYCODE'] = urlencode('US');
$paypal_data['ZIP'] = urlencode($_POST['payment']['zip']);
if ($_POST['payment']['shiptophonenum']) {
$paypal_data['SHIPTOPHONENUM'] = urlencode($_POST['payment']['shiptophonenum']);
}
$paypal_data['AMT'] = urlencode('99.00');
$paypal_data['INITAMT'] = urlencode('49.95');
$paypal_data['CURRENCYCODE'] = urlencode('USD');
$paypal_data['PROFILESTARTDATE'] = urlencode(gmdate(DATE_ISO8601, strtotime(gmdate('Y-m-d'))));
$paypal_data['BILLINGPERIOD'] = urlencode('Month');
$paypal_data['BILLINGFREQUENCY'] = 1;
$paypal_data['DESC'] = urlencode('$').$paypal_data['AMT'].urlencode(' per month');
$response = $paypal->api_call('CreateRecurringPaymentsProfile', $paypal_data);
This works with the fake credit cards on the Sandbox site, but rejects cards on the live site when I switch credentials and API URL.
$cardNumber = preg_replace('/[^0-9]/', '', $cardNumber);. You can also validate the card number yourself (just a card number without linking to the correct card type -- the Luhn algorithm is public and easy to find already made solutions, like this one ). Another possible option is to do such test transaction yourself for 0.01 (if u can) – LazyOne Jun 12 '11 at 23:51