Yii php Paypal credit card payment system

I know this sounds vague, but I'm looking for a way to build Yii paypal credit card payment methods for a credit-based purchase system. Is there any good php yii library that does this? Any good resources to learn how to do this? Thanks in advance.

+6
source share
3 answers

paypal, like other payment services, offers two options for their payment systems.

One is disconnected from the site where the user is redirected to the parent page from the iframe (usually) you clicked on.

Another option is integrated, where your transaction runs carefree on your site so that you never leave the page.

Your first step is to decide which one you want, costs, fees for paying for services that you are ready to handle. If you are big enough to have a trading account.

+2
source

Try this extension http://www.yiiframework.com/extension/paypal/

API Integration PayPals Direct Payment API uses the DoDirectPayment method for the component.

+4
source

Source: https://habr.com/ru/post/919874/


All Articles