|
NAMEVend::Payment::Getitcard - Interchange Getitcard SupportSYNOPSIS&charge=getitcardor [charge gateway=getitcard param1=value1 param2=value2] PREREQUISITESDigest::SHA Net::SSLeay or LWP::UserAgent and Crypt::SSLeay DESCRIPTIONThis module adds support for purchases with prepaid cards issued by Getitcard (http://www.getitcard.com/).The Vend::Payment::Getitcard module implements the getitcard() 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 Getitcard with a few configuration file changes. To enable this module, place this directive in "interchange.cfg": Require module Vend::Payment::Getitcard This must be in interchange.cfg or a file included from it. Make sure CreditCardAuto is off (default in Interchange demos). The mode can be named anything, but the "gateway" parameter must be set to "getitcard". 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 getitcard 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: [charge mode=getitcard id=YourGetitcardID] or Route getitcard id YourGetitcardID or Variable MV_PAYMENT_ID YourGetitcardID Required settings are "id". The active settings are:
TroubleshootingIf nothing works:
EXAMPLESThis examples should work if you provide a valid card number, and set variables MV_PAYMENT_ID, MV_PAYMENT_SECRET and MV_PAYMENT_CURRENCY.Sale[calc]$CGI->{mv_credit_card_number}='0123456789123456'[/calc][charge gateway=getitcard amount=12] Authorize[calc]$CGI->{mv_credit_card_number}='0123456789123456'[/calc][charge gateway=getitcard transaction=authorize amount=123] Cancel[charge gateway=getitcard transaction=cancel order_id=12345 order_number=123456]Commit[charge gateway=getitcard transaction=commit order_id=12345 order_number=123456]AUTHORSStefan Hornburg (Racke) <racke@linuxia.de>Jure Kodzoman (Yure) <jure@tenalt.com>
Visit the GSP FreeBSD Man Page Interface. |