Business::OnlinePayment::iAuthorizer 0.2.1 review
Download
|
|
Business::OnlinePayment::iAuthorizer is an iAuthorizer.net backend for Business::OnlinePayment.
SYNOPSIS
use Business::OnlinePayment;
my $tx = new Business::OnlinePayment("iAuthorizer");
$tx->content('login' => '...', # login, password, and serial for your account
'password' => '...',
'serial' => '...',
'action' => 'Normal Authorization',
'card_number' => '4012888888881', # test card
'expiration' => '05/05',
'amount' => '1.00',
'address' => '123 Anystreet',
'zip' => '12345',
'cvv2' => '1234',
);
$tx->submit();
if($tx->is_success()) {
print "Card processed successfully: ".$tx->authorization."n";
} else {
print "Card was rejected: ".$tx->error_message."n";
}
Requirements:
Perl
Business::OnlinePayment::iAuthorizer 0.2.1 keywords