-
-
14 Aug 2002 01:19:32 UTC
- Distribution: Business-OnlinePayment-eSec
- Module version: 0.02
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues
- Testers (6 / 302 / 0)
- Kwalitee
Bus factor: 1- 45.63% Coverage
- License: unknown
- Activity
24 month- Tools
- Download (3.28KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- unknown
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Business::OnlinePayment::eSec - eSec backend for Business::OnlinePayment
SYNOPSIS
use Business::OnlinePayment; my $tx = new Business::OnlinePayment("eSec"); $tx->content( type => 'CC', login => 'test', #EPS_MERCHANT action => 'Authorization Only', description => 'Business::OnlinePayment test', amount => '49.95', invoice_number => '100100', name => 'Tofu Beast', card_number => '4007000000027', expiration => '09/02', ); $tx->submit(); if($tx->is_success()) { print "Card processed successfully: ".$tx->authorization."\n"; } else { print "Card was rejected: ".$tx->error_message."\n"; }
DESCRIPTION
For detailed information see Business::OnlinePayment.
NOTE
COMPATIBILITY
This module implements eSec's API verison 2. See http://www.esec.com.au/sep/content/eps_support/integrate/integrate_use.html for details.
AUTHOR
Ivan Kohler <ivan-esec@420.am>
SEE ALSO
perl(1). Business::OnlinePayment.
Module Install Instructions
To install Business::OnlinePayment::eSec, copy and paste the appropriate command in to your terminal.
cpanm Business::OnlinePayment::eSec
perl -MCPAN -e shell install Business::OnlinePayment::eSec
For more information on module installation, please visit the detailed CPAN module installation guide.