diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2016-06-07 20:53:12 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2016-06-07 20:53:12 -0500 |
commit | b7c89634cd29d02e48767fbf177b5a66c4f4ad86 (patch) | |
tree | 4e0282b3d23447826a5fc3ff0b097c436e2a16a3 | |
parent | 48107a3ac2ff48c739cdbd9a89ebc61719099585 (diff) |
#42638: Update URLs for B::OP AuthorizeNet
-rw-r--r-- | AuthorizeNet.pm | 2 | ||||
-rw-r--r-- | AuthorizeNet/AIM.pm | 4 | ||||
-rw-r--r-- | AuthorizeNet/ARB.pm | 2 | ||||
-rw-r--r-- | Changes | 3 |
4 files changed, 8 insertions, 3 deletions
diff --git a/AuthorizeNet.pm b/AuthorizeNet.pm index aae9002..4453e5a 100644 --- a/AuthorizeNet.pm +++ b/AuthorizeNet.pm @@ -411,6 +411,8 @@ Ivan Kohler <ivan-authorizenet@freeside.biz> updated it for Authorize.Net protocol 3.0/3.1 and is the current maintainer. Please see the next section for information on contributing. +Jonathan Prykop <jonathan@freeside.biz> is currently a co-maintainer. + 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. diff --git a/AuthorizeNet/AIM.pm b/AuthorizeNet/AIM.pm index 4a02514..e7ecd56 100644 --- a/AuthorizeNet/AIM.pm +++ b/AuthorizeNet/AIM.pm @@ -9,12 +9,12 @@ use Text::CSV_XS; use vars qw($VERSION @ISA @EXPORT @EXPORT_OK); @ISA = qw(Business::OnlinePayment::AuthorizeNet Business::OnlinePayment::HTTPS); -$VERSION = '3.23'; +$VERSION = '3.24'; sub set_defaults { my $self = shift; - $self->server('secure.authorize.net') unless $self->server; + $self->server('secure2.authorize.net') unless $self->server; $self->port('443') unless $self->port; $self->path('/gateway/transact.dll') unless $self->path; diff --git a/AuthorizeNet/ARB.pm b/AuthorizeNet/ARB.pm index cc8289b..43910a0 100644 --- a/AuthorizeNet/ARB.pm +++ b/AuthorizeNet/ARB.pm @@ -17,7 +17,7 @@ $me='Business::OnlinePayment::AuthorizeNet::ARB'; sub set_defaults { my $self = shift; - $self->server('api.authorize.net') unless $self->server; + $self->server('api2.authorize.net') unless $self->server; $self->port('443') unless $self->port; $self->path('/xml/v1/request.api') unless $self->path; @@ -1,5 +1,8 @@ Revision history for Perl extension Business::OnlinePayment::AuthorizeNet. +3.24 Tue Jun 7 20:41:32 CDT 2016 + - updated to use new Akamai SureRoute urls + 3.23 Sun Dec 20 13:05:34 PST 2015 - Don't require libense_num / license_state / license_dob for E-Check transacitons; not a universal requirement. Patches from Craig |