Support for Stripe/Square or other payment service providers

0
0

So for my application, I can easily collect the user’s credit card information and pass it to the Stripe SDK…however, it opens a whole can of worms vis-a-vis PCI compliance issues, audits, etc. So they allow it, but there are complications because we have access (potentially) to customer card data.

They offer “simpler” (for conventional websites) forms/javascript which allows the user to enter their info, and their servers then tokenize the data to hand back to the application server.

Have you guys integrated Stripe or Square in the past and if so, which method did you use to accept payment?

Thanks!

-John

  • You must to post comments
0
0

In the past I used AuthorizeNet C# SDK (a few times). It depends on the provider. Most providers have C#, Java, Python SDKs. The ones that require you to navigate to their site are usually a mess to manage. Authenticating and charging a credit card from the server side is much simpler. You send a request and get a response. What you do with customer data is up to you. Our web site now uses paypal professional but the charge is done in php on our server.

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.