The DIY part is just writing your own webhooks (callbacks) for Stripe to call whenever there is a payment, a subscription cancellation, etc. The actual payment processing is handled by stripe: a JavaScript library in the client browser sends payment info to Stripe, and gets back a token which it then passes to your server. Credit card info never hits your server, so you don't have to worry about PCI, etc.
Mike On Thu, 2012-04-12 at 12:40 -0700, Jesse Keating wrote: > On 4/11/12 9:11 PM, Michael Titus wrote: > > You might take a look at Stripe: > > > > https://stripe.com/ > > > > It requires actual programming to use, but the API is much simpler than > > PayPal's, and Stripe lets you accept credit cards without having a > > merchant account or having to meet PCI requirements. > > Honestly, having to roll your own software for Stripe would make me > trust sites using it /less/. > _______________________________________________ Fest-list mailing list [email protected] https://www.peakserv.com/mailman/listinfo/fest-list
