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.

link|improve this question
And which card type/number have you tried. I bet they were fake/test as well. AFAIK On live/production API URL you should only use real cards. – LazyOne Jun 12 '11 at 20:17
Nope, all tests on the live site have been with real credit cards. – VWD2 Jun 12 '11 at 23:08
Well, in this case the only things that come into my mind are: 1) space character is used inside the card number (e.g. '1 1' <> '11' -- looks like PayPal does not cleaning this up for you -- try removing all non-digits if you are not doing it yet); 2) invalid card number, like 17 digits instead of 16 .. or 2 digits accidentally swapped around (very popular issue with customers and very unlikely with devs, but please check); 3) card number does not match card type – LazyOne Jun 12 '11 at 23:32
My client claims to be entering everything properly when they test. I can't see exactly what they're doing of course, but I trust that there aren't any spaces. – VWD2 Jun 12 '11 at 23:41
1  
Instead of just trusting on this one it will be better to clean the card number up on your side -- it's very easy to do anyway and will protect you for sure from such possible accidents: $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
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.