-
-
06 Mar 2014 03:12:59 UTC
- Distribution: Business-OnlinePayment-CyberSource
- Module version: 3.000016
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues (1)
- Testers (167 / 3 / 8)
- Kwalitee
Bus factor: 0- % Coverage
- License: perl_5
- Perl: v5.10.0
- Activity
24 month- Tools
- Download (25.06KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- Business::CyberSource
- Business::CyberSource::Client
- Business::OnlinePayment
- DateTime
- Exception::Base
- Module::Runtime
- Moose
- Moose::Role
- MooseX::Aliases
- MooseX::NonMoose
- MooseX::StrictConstructor
- MooseX::Types::Common::String
- MooseX::Types::CyberSource
- MooseX::Types::Moose
- Try::Tiny
- namespace::autoclean
- strict
- warnings
- Reverse dependencies
- CPAN Testers List
- Dependency graph
- NAME
- VERSION
- SYNOPSIS
- DESCRIPTION
- METHODS
- SUPPORTED TRANSACTION TYPES
- ACKNOWLEDGMENTS
- SEE ALSO
- BUGS
- AUTHORS
- COPYRIGHT AND LICENSE
NAME
Business::OnlinePayment::CyberSource - CyberSource backend for Business::OnlinePayment
VERSION
version 3.000016
SYNOPSIS
use Business::OnlinePayment; my $tx = Business::OnlinePayment->new( "CyberSource" ); $tx->content( login => 'username', password => 'password', type => 'CC', action => 'Normal Authorization', invoice_number => '00000001', # MurchantReferenceCode first_name => 'Peter', last_name => 'Bowen', address => '123 Anystreet', city => 'Orem', state => 'Utah', zip => '84097', country => 'US', email => 'foo@bar.net', card_number => '4111111111111111', expiration => '09/06', cvv2 => '1234', #optional amount => '5.00', currency => 'USD', ); $tx->submit(); if($tx->is_success()) { print "Card processed successfully: ".$tx->authorization."\n"; } else { print "Card was rejected: ".$tx->error_message."\n"; } #### # Two step transaction, authorization and capture. # If you don't need to review order before capture, you can # process in one step as above. #### $tx = Business::OnlinePayment->new("CyberSource"); $tx->content( login => 'username', password => 'password', type => 'CC', action => 'Authorization Only', invoice_number => 44544, # MurchantReferenceCode description => 'Business::OnlinePayment visa test', amount => '42.39', first_name => 'Tofu', last_name => 'Beast', address => '123 Anystreet', city => 'Anywhere', state => 'Utah', zip => '84058', country => 'US', email => 'tofu@beast.org', card_number => '4111111111111111', expiration => '12/25', cvv2 => 1111, ); $tx->submit(); if($tx->is_success()) { # get information about authorization my $authorization = $tx->authorization(); my $order_number = $tx->order_number(); # RequestId my $avs_code = $tx->avs_code(); # AVS Response Code(); my $cvv2_response = $tx->cvv2_response(); # CVV2/CVC2/CID Response Code(); # now capture transaction $tx->content( login => 'username', password => 'password', type => 'CC', action => 'Post Authorization', invoice_number => 44544, #MurchantReferenceCode amount => '42.39', po_number => $tx->order_number(), # RequestId ); $tx->submit(); if($tx->is_success()) { print "Funds captured successfully\n"; } else { print "Card was rejected: ".$tx->error_message."\n"; } } else { print "Card was rejected: " . $tx->error_message() . "\n"; }
DESCRIPTION
For detailed information see Business::OnlinePayment.
METHODS
BUILD
this is a before-construction hook for Moose. You Will never call this method directly.
SUPPORTED TRANSACTION TYPES
CC
Content required: type, login, action, amount, first_name, last_name, card_number, expiration.
cvv2 is required in order to get back a cvv2_response value.
Settling
To settle an authorization-only transaction (where you set action to
Authorization Only
), submit theorder_number
code in the fieldpo_number
with the action set toPost Authorization
.You can get the transaction id from the authorization by calling the
order_number
method on the object returned from the authorization. You must also submit the amount field with a value less than or equal to the amount specified in the original authorization.ACKNOWLEDGMENTS
- Jason Kohles
-
For writing BOP - I didn't have to create my own framework.
- Ivan Kohler
-
Tested the first pre-release version and fixed a number of bugs. He also encouraged me to add better error reporting for system errors. He also added failure_status support.
- Jason (Jayce^) Hall
-
Adding Request Token Requirements (Among other significant improvements... )
SEE ALSO
BUGS
Please report any bugs or feature requests on the bugtracker website https://github.com/xenoterracide/business-onlinepayment-cybersource/issues
When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.
AUTHORS
Jad Wauthier <Jadrien dot Wauthier at GMail dot com>
Caleb Cushing <xenoterracide@gmail.com>
Peter Bowen <peter@bowenfamily.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2014 by HostGator.com.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Module Install Instructions
To install Business::OnlinePayment::CyberSource, copy and paste the appropriate command in to your terminal.
cpanm Business::OnlinePayment::CyberSource
perl -MCPAN -e shell install Business::OnlinePayment::CyberSource
For more information on module installation, please visit the detailed CPAN module installation guide.