Hacker News new | past | comments | ask | show | jobs | submit login

> I haven't worked with CheddarGetter or BrainTree directly.

Let me put a big +1 in for BrainTree, then. Especially when coupled with something like their Ruby gem (http://rubygems.org/gems/braintree , written by them, not even someone else's implementation) or ActiveMerchant, it's really, really easy to integrate. Plus, since when does your card processor have articles about their git process? (http://www.braintreepaymentsolutions.com/devblog/our-git-wor...)

I have no affiliation with them other than being a happy customer.




Do you have any experience with Braintree's subscription payment service? How does it compare?


The recurring payments capabilities of gateways, such as Braintree, Auth.net, etc. typically are not as robust as the recurring payments capabilities of the companies that specifically focused on that capability such as Chargify, Recurly, Zuora, etc.

If you just need to charge the same customers exactly the same amount on exactly the same timeframe, then the capabilities of gateways such as Braintree may be ok for you.

But typically SaaS companies and others with multiple plans, additions, features, extra one time payments, etc. need an additional layer of logic on top of those capabilities. You can either buy that logic or pay Chargify, et al for it.


I just wanted to clarify that Braintree does has additional recurring billing features that are not mentioned here. You have the ability to set up multiple plans, modify individual subscriptions, created add-ons and discounts, create one time charges and more. For a more complete list of features you can check out our website: http://www.braintreepaymentsolutions.com/services/recurring-....

-Jen (Braintree)


I don't have experience with Chargify's, so...

Basically, braintree has a 'vault' feature where I just add a 'vault_id' attribute to my user model, then call 'response = GATEWAY.store(credit_card, :email => current_user.email)' to send their info off to braintree. Later, that lets me send a charge with their vault_id, and it charges their card.

It's probably just slightly lower-level than Chargify's...




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: