|
NAMEVend::Payment::ECHO - Interchange ECHO SupportAUTHORMichael Lehmkuhl <michael@electricpulp.com>.Ported to Vend::Payment by Dan Browning <db@kavod.com>. Code reused and inspired by Mike Heins <mike@perusion.com>. SPECIAL THANKSJim Darden <support@openecho.com>, Dan Browning <db@kavod.com>SYNOPSIS&charge=echo or [charge mode=echo param1=value1 param2=value2] PREREQUISITESIf you have not done so already, you will need to sign up for an ECHO account. You will be provided an ID and a PIN (also known as 'secret'). You may also sign up for a test account at the following URL:http://www.echo-inc.com/echotestapp.php This subroutine uses the OpenECHO module. Make sure OpenECHO.pm is in your @INC array. It is available for download, see the following URLs: http://www.openecho.com/ http://www.echo-inc.com/ The OpenECHO.pm module itself has some additional prerequisites: Net::SSLeay or LWP::UserAgent and Crypt::SSLeay Only one of these need be present and working. Net::SSLeay is preferred as some have reported problems using LWP::UserAgent and Crypt::SSLeay. URL::Escape This module is used to write some of the URLs used by the OpenECHO module. It is recommended that you read the documention for the OpenECHO module itself in addition to this document. DESCRIPTIONThe Vend::Payment::ECHO module implements the echo() routine for use with Interchange. It is compatible on a call level with the other Interchange payment modules -- in theory (and even usually in practice) you could switch from CyberCash to ECHO with a few configuration file changes.To enable this module, place this directive in "interchange.cfg": Require module Vend::Payment::ECHO This must be in interchange.cfg or a file included from it. NOTE: Make sure CreditCardAuto is off (default in Interchange demos). The mode can be named anything, but the "gateway" parameter must be set to "echo". To make it the default payment gateway for all credit card transactions in a specific catalog, you can set in "catalog.cfg": Variable MV_PAYMENT_MODE echo It uses several of the standard settings from Interchange payment. Any time we speak of a setting, it is obtained either first from the tag/call options, then from an Interchange order Route named for the mode, then finally a default global payment variable, For example, the "id" parameter would be specified by: Route echo id Your_ECHO_ID or (with only ECHO as a payment provider) Variable MV_PAYMENT_ID Your_ECHO_ID or Variable ECHO_PAYMENT_ID Your_ECHO_ID or [charge mode=echo id=Your_ECHO_ID] The active settings are:
Example ConfigurationThis is an example configuration that one would add to catalog.cfg:Variable MV_PAYMENT_ID Your_ECHO_ID Variable MV_PAYMENT_SECRET Your_ECHO_secret Variable MV_PAYMENT_MODE echo TroubleshootingTry a sale with the card number "4111 1111 1111 1111" and a valid expiration date. The sale should be denied, and the reason should be in [data session payment_error].If nothing works:
SECURITY CONSIDERATIONSBecause this library calls an executable, you should ensure that no untrusted users have write permission on any of the system directories or Interchange software directories.NOTESThere is actually nothing *in* Vend::Payment::ECHO. It changes packages to Vend::Payment and places things there.
Visit the GSP FreeBSD Man Page Interface. |