Subject: | No CVV2 verification |
The CVV2 verification is not implemented. Need to do something like this:
$self->remap_fields(
login => 'merchant_id',
action => 'trnType',
description => 'trnComments',
amount => 'trnAmount',
invoice_number => 'trnOrderNumber',
owner => 'trnCardOwner',
name => 'ordName',
address => 'ordAddress1',
city => 'ordCity',
state => 'ordProvince',
zip => 'ordPostalCode',
country => 'ordCountry',
phone => 'ordPhoneNumber',
email => 'ordEmailAddress',
card_number => 'trnCardNumber',
exp_date => 'trnExpYear',
cvv2 => 'trnCardCvd',
);
[....]
my %post_data = $self->get_fields( qw/merchant_id trnType trnComments
trnAmount trnOrderNumber
trnCardNumber
trnExpYear trnExpMonth
trnCardCvd trnCardOwner
ordName ordAddress1 ordCity
ordProvince
ordPostalCode ordCountry
ordPhoneNumber
ordEmailAddress/ );