NAME
Business::OnlinePayment::SecureHostingUPG - SecureHosting UPG backend module for Business::OnlinePayment
SYNOPSIS
use Business::OnlinePayment;
####
# One step transaction, the simple case.
####
my $tx = new Business::OnlinePayment("SecureHostingUPG");
$tx->content(
type => 'VISA',
login => 'SecureHosting Reference',
password => 'SecureHosting Checkcode value',
action => 'Normal Authorization',
description => 'Business::OnlinePayment test',
amount => '49.95',
currency => 'GBP',
name => 'Tofu Beast',
address => '123 Anystreet',
city => 'Anywhere',
state => 'UT',
zip => '84058',
phone => '420-867-5309',
email => 'tofu.beast@example.com',
card_number => '4005550000000019',
expiration => '08/06',
card_start => '05/04',
cvv2 => '1234', #optional
issue_number => '5678',
);
$tx->submit();
if($tx->is_success()) {
print "Card processed successfully: ".$tx->authorization."\n";
} else {
print "Card was rejected: ".$tx->error_message."\n";
}
SUPPORTED TRANSACTION TYPES
CC, Visa, MasterCard, American Express, Discover
Content required: type, login, password, action, amount, first_name, last_name, card_number, expiration.
PREREQUISITES
URI::Escape
Tie::IxHash
Net::SSLeay _or_ ( Crypt::SSLeay and LWP )
The included htmlgood.html and htmlbad.html files must be uploaded to your
Secure Hosting account (Settings | File Manager).
DESCRIPTION
For detailed information see Business::OnlinePayment.
NOTE
Only "Normal Authorization" is supported by the gateway.
AUTHOR
Ivan Kohler <ivan-securehostingupg@420.am>
SEE ALSO
perl(1). Business::OnlinePayment.