Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Authorize.net Payment integration [closed]

I'm looking to do Authorize.net payment integration with a website using PHP.

My questions are:

1) Where I can find a tutorial, development guide, and/or code samples for doing this with PHP.

2) Is it possible to obtain a test account to do the integration like Paypal's sandbox, or does one need to have a live account to which you can pass an additional parameter to indicate the transaction is a test one?

All other advice will also be helpful. Thanks!

like image 619
Ali Avatar asked Sep 15 '09 03:09

Ali


People also ask

Is Authorize.net down?

No incidents reported today. Completed - The planned support center maintenance has been completed. All systems and services have been restored and are working as expected. Please do not hesitate to contact the Authorize.net support team if you have any questions or concerns.

How do I integrate Authorize.net payment gateway?

Steps to Integrate Authorize.Net Payment GatewayCreate Authorize.Net account to get API Login id and key. Import PHP SDK to access Authorize.Net API. Create a payment form to get credit card information from the user. Configure API credentials and request payment process.

Does Authorize.net integrate with PayPal?

Yes, as announced by Authorize.Net, they now accept PayPal payments. You can use PayPal Express Checkout feature which allows you to view your PayPal transactions made in Authorize.net in the Merchant Interface.

Does Authorize.net have a payment link?

From Bill & Pay you can process the payment, set up recurring payments or email the customer with a link to pay. Customers can pay using ACH or credit card and Bill & Pay works with any merchant account.


1 Answers

1) I'm guessing you will be doing an 'AIM' integration (Advanced Integration Method). Authorize.net has code samples in a few different languages, including PHP. You can also find the AIM docs.

2) You can definitely get a test account which will run in test mode, as opposed to production. Different types of test credit cards can be used with your test account. I don't remember if you can sign up for it online or if you need to call and speak with someone.

In regards to 1, I have no idea how good the sample code is because I've never used it, but I'm guessing it will give you a good idea of what's going on.

EDIT: Let me not forget, I'm guessing that http://developer.authorize.net/ will become your friend if you are going to roll your own implementation. And, you can sign up for a test account online.

like image 91
theIV Avatar answered Oct 07 '22 17:10

theIV