aka has asked for the wisdom of the Perl Monks concerning the following question:

Hi every one,

I need to do a web page with online payment for customers. If I have good understood, the best way is to use Business::OnlinePayment, isn't it ?

About this, besides my own IBAN, I only need a processor module and an account in the corresponding gateway ?

Thanks, best regards,

aka

Replies are listed 'Best First'.
Re: Starting with Business::OnlinePayment
by Bod (Parson) on Jun 25, 2021 at 18:30 UTC
    I need to do a web page with online payment for customers

    I have a few websites that take online payments from customers. They use PayPal Business and Stripe.

    For the latter I created Business::Stripe::WebCheckout which you may find useful. If you only have simple transactions of a number of items and do not need recurring payments, it simplifies implementing a payment gateway using Perl.

    I would have no hesitation recommending Stripe as a payment gateway.