Business::OnlinePayment::InternetSecure

InternetSecure backend for Business::OnlinePayment
Download

Business::OnlinePayment::InternetSecure Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Publisher Name:
  • Frederic Briere
  • Publisher web site:
  • http://search.cpan.org/~fbriere/

Business::OnlinePayment::InternetSecure Tags


Business::OnlinePayment::InternetSecure Description

InternetSecure backend for Business::OnlinePayment Business::OnlinePayment::InternetSecure is a Perl implementation of Business::OnlinePayment that allows for processing online credit card payments through InternetSecure.See Business::OnlinePayment for more information about the generic Business::OnlinePayment interface.SYNOPSIS use Business::OnlinePayment; $txn = new Business::OnlinePayment 'InternetSecure', merchant_id => '0000'; $txn->content( action => 'Normal Authorization', type => 'Visa', # Optional card_number => '4111 1111 1111 1111', expiration => '2004-07', cvv2 => '000', # Optional name => "Fr\x{e9}d\x{e9}ric Bri\x{e8}re", company => '', address => '123 Street', city => 'Metropolis', state => 'ZZ', zip => 'A1A 1A1', country => 'CA', phone => '(555) 555-1212', email => 'fbriere@fbriere.net', amount => 49.95, currency => 'CAD', taxes => 'GST PST', description => 'Test transaction', ); $txn->submit; if ($txn->is_success) { print "Card processed successfully: " . $tx->authorization . "\n"; } else { print "Card was rejected: " . $tx->error_message . "\n"; } Requirements: · Perl


Business::OnlinePayment::InternetSecure Related Software