Is there a CakePHP PayPal plugin?

still have not integrated with PayPal. Is there any paid cakephp plugin available where a user can pay via PayPal account or credit card?

+4
source share
3 answers

I don’t know if there is a plugin, and if there is, I don’t think I will use it. This is one of those situations when you should read the API and do it yourself. This way you will be well aware of the mechanism, which is vital when it comes to testing (and you need to do a lot of things) and maintenance.

The API is very well documented ( https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/home ), although a huge amount of information can be overwhelming at first, and there is a sandbox for testing ( https: //cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/howto_testing_sandbox ).

I found the IPN example code ( https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/library_code_ipn_code_samples ) to be a very useful starting point, and to be honest, there is not much work. necessary for this.

+6
source

There are several implementations of CakePHP Paypal integration, including:

IPT WebTechNick Paypal Plugin http://www.webtechnick.com/blogs/view/218/CakePHP_Paypal_IPN_Plugin

Or Google for: Paypal direct payment API component or Paypal data source

Although some of these and other plugins do this work on our kumutu.com website, we use a customizable system, as the Paypal API is well-documented, and, as Leo suggests, our site is regular and knows exactly how the payment system works. important to us.

0
source

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


All Articles