Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I need some guidance on payment gateways [closed]

I've never done anything with payment gateways, can anybody give me suggestions?

like image 701
jarus Avatar asked Mar 15 '09 06:03

jarus


2 Answers

Payment gateways differ from country to country and they are agencies who can enable payment processing in your applications.

For example. in UK BT has it payment gateway. They call it BTBuynet . In India ICICI is one of the major payment gateway providers. You can also check out paypal.

Each of them have their own way of implementation. Usually every payment gateways have 2 modes for payment processing.

  1. Payment page : This is one of the most commonly used. Sites usually redirect the user to the pay page hosted by the payment gateway. This type has some advantages and disadvantages.

Advantages

We dont have to worry about validating or storing cards details as everything is taken care by their pay page.

Disadvantages

Since we redirect the user to a different site the look and feel of the site will be different.

  1. Payment service : This is the second type in which usually a component or API is used. ard details are collected by the merchant (The application owner) and sent for payment processing.

Hope this gives yo some idea about payment gateways. You can also check out some related questions in the RHS.

like image 129
Shoban Avatar answered Sep 18 '22 13:09

Shoban


Well, decide on a payment gateway you want to work with. If you're just looking to learn about this online, I'd recommend going with PayPal's payment gateway. They really don't give good rates (they take a big bite out of the money you charge users), but they have a nice "sandbox" system which you can switch on and off, and it's free to develop with. This lets you run your system as if everything was "live":

  • Money will get credited to your sandbox account from the fake credit cards that you create
  • Transactions will act just like the live system: you'll get confirmations and notifications just like it was real.

So a good place to start for that would be PayPal's developer site.

Oh, don't be afraid to use some other gateway - all the ones I've used have a way to test their system before it goes live. But many of them do not allow switching back to a "fake" simulation mode after it's gone live. So adding and testing new features after you got a production system is trickier.

like image 21
Shalom Craimer Avatar answered Sep 18 '22 13:09

Shalom Craimer