Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

business::onlinepayment::authorizenet::aim(3pm) [debian man page]

AuthorizeNet::AIM(3pm)					User Contributed Perl Documentation				    AuthorizeNet::AIM(3pm)

NAME
Business::OnlinePayment::AuthorizeNet::AIM - AuthorizeNet AIM backend for Business::OnlinePayment AUTHOR
Jason Kohles, jason@mediabang.com Ivan Kohler <ivan-authorizenet@420.am> updated it for Authorize.Net protocol 3.0/3.1 and is the current maintainer. Please send patches as unified diffs (diff -u). Jason Spence <jspence@lightconsulting.com> contributed support for separate Authorization Only and Post Authorization steps and wrote some docs. OST <services@ostel.com> paid for it. T.J. Mather <tjmather@maxmind.com> sent a number of CVV2 patches. Mike Barry <mbarry@cos.com> sent in a patch for the referer field. Yuri V. Mkrtumyan <yuramk@novosoft.ru> sent in a patch to add the void action. Paul Zimmer <AuthorizeNetpm@pzimmer.box.bepress.com> sent in a patch for card-less post authorizations. Daemmon Hughes <daemmon@daemmonhughes.com> sent in a patch for "transaction key" authentication as well support for the recurring_billing flag and the md5 method that returns the MD5 hash which is returned by the gateway. Steve Simitzis contributed a patch for better compatibility with eProcessingNetwork's AuthorizeNet compatability mode. SEE ALSO
perl(1). Business::OnlinePayment Business::OnlinePayment::AuthorizeNet. perl v5.12.4 2011-09-26 AuthorizeNet::AIM(3pm)

Check Out this Related Man Page

OpenECHO(3pm)						User Contributed Perl Documentation					     OpenECHO(3pm)

NAME
Business::OnlinePayment::OpenECHO - ECHO backend module for Business::OnlinePayment SYNOPSIS
use Business::OnlinePayment; #### # One step transaction, the simple case. #### my $tx = new Business::OnlinePayment("OpenECHO"); $tx->content( type => 'VISA', login => '1234684752', password => '43400210', action => 'Normal Authorization', description => 'Business::OnlinePayment test', amount => '49.95', invoice_number => '100100', customer_id => 'jsk', first_name => 'Tofu', last_name => 'Beast', address => '123 Anystreet', city => 'Anywhere', state => 'UT', zip => '84058', card_number => '4005550000000019', expiration => '08/06', cvv2 => '1234', #optional referer => 'http://valid.referer.url/', ); $tx->submit(); if($tx->is_success()) { print "Card processed successfully: ".$tx->authorization." "; } else { print "Card was rejected: ".$tx->error_message." "; } SUPPORTED TRANSACTION TYPES
CC, Visa, MasterCard, American Express, Discover Content required: type, login, password, action, amount, first_name, last_name, card_number, expiration. Check Content required: type, login, password, action, amount, first_name, last_name, account_number, routing_code, bank_name. (...more) PREREQUISITES
URI::Escape Tie::IxHash Net::SSLeay _or_ ( Crypt::SSLeay and LWP ) DESCRIPTION
For detailed information see Business::OnlinePayment. AUTHOR
Original Author Michael Lehmkuhl <michael@electricpulp.com> Special Thanks Jim Darden <jdarden@echo-inc.com> Dan Browning <db@kavod.com> Business::OnlinePayment Implementation Ivan Kohler <ivan-openecho@420.am> SEE ALSO
perl(1). Business::OnlinePayment. perl v5.8.8 2008-03-01 OpenECHO(3pm)
Man Page