random52k-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
2006-Oct-24 14:12 UTC
Simplest way to accept credit card transactions?
Just looking for some recommendations for the simplest way to handle online credit card purchases with a merchant account. From searching through some of the previous list messages, it looks like trustcommerce.com and authorize.net come highly recommended, so I''m just trying to figure out which one will be the easiest to integrate with rails.. Cost isn''t much of an issue, but time is, so the faster/easier something is to implement and get working, the better (I''ve got a tight deadline).>From what I can tell, trustcommerce has a ruby library(http://www.trustcommerce.com/tclink.php) to interface with their API, while authorize.net does not (however, it looks like there are third party libraries such as ActiveMerchant or Ruby Payment which will handle the integration).. I''m just wondering if anyone has had any experience with either of these libraries or the trustcommerce ruby integration and can recommend one over the other. Also, does it make it any easier to use a merchant account provided by the payment processing gateway company, rather than a separate non-related merchant account provider? Thanks, Mike --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
On 10/24/06, random52k-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org <random52k-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > Just looking for some recommendations for the simplest way to handle > online credit card purchases with a merchant account. From searching > through some of the previous list messages, it looks like > trustcommerce.com and authorize.net come highly recommended, so I''m > just trying to figure out which one will be the easiest to integrate > with rails.. Cost isn''t much of an issue, but time is, so the > faster/easier something is to implement and get working, the better > (I''ve got a tight deadline). > > >From what I can tell, trustcommerce has a ruby library > (http://www.trustcommerce.com/tclink.php) to interface with their API, > while authorize.net does not (however, it looks like there are third > party libraries such as ActiveMerchant or Ruby Payment which will > handle the integration).. I''m just wondering if anyone has had any > experience with either of these libraries or the trustcommerce ruby > integration and can recommend one over the other. > > Also, does it make it any easier to use a merchant account provided by > the payment processing gateway company, rather than a separate > non-related merchant account provider? > > Thanks, > > Mike > > > > >Mike, I recently launched a rails app that uses TrustCommerce as the payment gateway to handle monthly subscription billing. They have a nice feature called Citadel that handles storing a customer profile and monthly billing so you don''t have to store credit card info in you db. Being CISP-compliant is not easy :) I haven''t been a customer for long but am very happy with TC so far. TC can offer you a merchant account through a partner. We chose to use BofA. It shouldn''t matter if you use a merchant account provided by the payment processing gateway company or a separate merchant account provider. The TC ruby API is very robust in my experience. You can also integrate using straight HTTPS posts. I wrote a rails plugin to handle the TC Citadel integration. Check it out if you''d like an example of using the TC API. The plugin uses the ruby extension if available, otherwise it falls back and uses HTTPS. The plugin svn repo is here: http://svn.depixelate.com/plugins/trustcommerce_subscription/ I blogged about it here: http://www.depixelate.com/2006/10/20/trustcommerce-subscription-plugin-released Hope this helps, Zack --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
random52k-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
2006-Oct-24 17:58 UTC
Re: Simplest way to accept credit card transactions?
Thanks for the info Zack, right now I''m leaning more towards Trustcommerce unless anyone else has reasons for why I should check out authorize.net instead.. Thanks for the link to your plugin, I''ll definitely check it out. Mike Zack Chandler wrote:> On 10/24/06, random52k-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org <random52k-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > Just looking for some recommendations for the simplest way to handle > > online credit card purchases with a merchant account. From searching > > through some of the previous list messages, it looks like > > trustcommerce.com and authorize.net come highly recommended, so I''m > > just trying to figure out which one will be the easiest to integrate > > with rails.. Cost isn''t much of an issue, but time is, so the > > faster/easier something is to implement and get working, the better > > (I''ve got a tight deadline). > > > > >From what I can tell, trustcommerce has a ruby library > > (http://www.trustcommerce.com/tclink.php) to interface with their API, > > while authorize.net does not (however, it looks like there are third > > party libraries such as ActiveMerchant or Ruby Payment which will > > handle the integration).. I''m just wondering if anyone has had any > > experience with either of these libraries or the trustcommerce ruby > > integration and can recommend one over the other. > > > > Also, does it make it any easier to use a merchant account provided by > > the payment processing gateway company, rather than a separate > > non-related merchant account provider? > > > > Thanks, > > > > Mike > > > > > > > > > > > Mike, > > I recently launched a rails app that uses TrustCommerce as the payment > gateway to handle monthly subscription billing. They have a nice > feature called Citadel that handles storing a customer profile and > monthly billing so you don''t have to store credit card info in you db. > Being CISP-compliant is not easy :) > > I haven''t been a customer for long but am very happy with TC so far. > > TC can offer you a merchant account through a partner. We chose to > use BofA. It shouldn''t matter if you use a merchant account provided > by the payment processing gateway company or a separate merchant > account provider. > > The TC ruby API is very robust in my experience. You can also > integrate using straight HTTPS posts. I wrote a rails plugin to > handle the TC Citadel integration. Check it out if you''d like an > example of using the TC API. The plugin uses the ruby extension if > available, otherwise it falls back and uses HTTPS. > > The plugin svn repo is here: > http://svn.depixelate.com/plugins/trustcommerce_subscription/ > > I blogged about it here: > http://www.depixelate.com/2006/10/20/trustcommerce-subscription-plugin-released > > Hope this helps, > Zack--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
Will Weidendorf
2006-Oct-24 18:58 UTC
Re: Simplest way to accept credit card transactions?
I would say at least check out all of your most appropriate options. I have used authorize.net for quite sometime, and while I do not know much (hardly anything at all) about trustcommerce, I have been quite pleased with authorize.net. Really it all comes down to service, if they can connect to your preferred payment processor, features, and fees. My 2 cents. Will On 10/24/06, random52k-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org <random52k-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > Thanks for the info Zack, right now I''m leaning more towards > Trustcommerce unless anyone else has reasons for why I should check out > authorize.net instead.. Thanks for the link to your plugin, I''ll > definitely check it out. > > Mike > > > Zack Chandler wrote: > > On 10/24/06, random52k-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org <random52k-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > > > Just looking for some recommendations for the simplest way to handle > > > online credit card purchases with a merchant account. From searching > > > through some of the previous list messages, it looks like > > > trustcommerce.com and authorize.net come highly recommended, so I''m > > > just trying to figure out which one will be the easiest to integrate > > > with rails.. Cost isn''t much of an issue, but time is, so the > > > faster/easier something is to implement and get working, the better > > > (I''ve got a tight deadline). > > > > > > >From what I can tell, trustcommerce has a ruby library > > > (http://www.trustcommerce.com/tclink.php) to interface with their API, > > > while authorize.net does not (however, it looks like there are third > > > party libraries such as ActiveMerchant or Ruby Payment which will > > > handle the integration).. I''m just wondering if anyone has had any > > > experience with either of these libraries or the trustcommerce ruby > > > integration and can recommend one over the other. > > > > > > Also, does it make it any easier to use a merchant account provided by > > > the payment processing gateway company, rather than a separate > > > non-related merchant account provider? > > > > > > Thanks, > > > > > > Mike > > > > > > > > > > > > > > > > > Mike, > > > > I recently launched a rails app that uses TrustCommerce as the payment > > gateway to handle monthly subscription billing. They have a nice > > feature called Citadel that handles storing a customer profile and > > monthly billing so you don''t have to store credit card info in you db. > > Being CISP-compliant is not easy :) > > > > I haven''t been a customer for long but am very happy with TC so far. > > > > TC can offer you a merchant account through a partner. We chose to > > use BofA. It shouldn''t matter if you use a merchant account provided > > by the payment processing gateway company or a separate merchant > > account provider. > > > > The TC ruby API is very robust in my experience. You can also > > integrate using straight HTTPS posts. I wrote a rails plugin to > > handle the TC Citadel integration. Check it out if you''d like an > > example of using the TC API. The plugin uses the ruby extension if > > available, otherwise it falls back and uses HTTPS. > > > > The plugin svn repo is here: > > http://svn.depixelate.com/plugins/trustcommerce_subscription/ > > > > I blogged about it here: > > http://www.depixelate.com/2006/10/20/trustcommerce-subscription-plugin-released > > > > Hope this helps, > > Zack > > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
random52k-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
2006-Oct-24 20:23 UTC
Re: Simplest way to accept credit card transactions?
How easy was it to get everything up and running with authorize.net? Which plugin did you use, the Payment plugin, or Active Merchant? And do they take care of storing the credit card info on their servers? I''m not sure if I''ll have a need for this, since I''m not going to be doing subscriptions.. But even so, if a user buys a product and then returns to the site, ideally I''d like them to be able to purchase more items without requiring them to re-renter their credit card number, in which case I guess it would have to be stored externally.. Thanks, Mike Will Weidendorf wrote:> I would say at least check out all of your most appropriate options. > I have used authorize.net for quite sometime, and while I do not know > much (hardly anything at all) about trustcommerce, I have been quite > pleased with authorize.net. Really it all comes down to service, if > they can connect to your preferred payment processor, features, and > fees. My 2 cents. > > Will > > On 10/24/06, random52k-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org <random52k-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > Thanks for the info Zack, right now I''m leaning more towards > > Trustcommerce unless anyone else has reasons for why I should check out > > authorize.net instead.. Thanks for the link to your plugin, I''ll > > definitely check it out. > > > > Mike > > > > > > Zack Chandler wrote: > > > On 10/24/06, random52k-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org <random52k-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > > > > > Just looking for some recommendations for the simplest way to handle > > > > online credit card purchases with a merchant account. From searching > > > > through some of the previous list messages, it looks like > > > > trustcommerce.com and authorize.net come highly recommended, so I''m > > > > just trying to figure out which one will be the easiest to integrate > > > > with rails.. Cost isn''t much of an issue, but time is, so the > > > > faster/easier something is to implement and get working, the better > > > > (I''ve got a tight deadline). > > > > > > > > >From what I can tell, trustcommerce has a ruby library > > > > (http://www.trustcommerce.com/tclink.php) to interface with their API, > > > > while authorize.net does not (however, it looks like there are third > > > > party libraries such as ActiveMerchant or Ruby Payment which will > > > > handle the integration).. I''m just wondering if anyone has had any > > > > experience with either of these libraries or the trustcommerce ruby > > > > integration and can recommend one over the other. > > > > > > > > Also, does it make it any easier to use a merchant account provided by > > > > the payment processing gateway company, rather than a separate > > > > non-related merchant account provider? > > > > > > > > Thanks, > > > > > > > > Mike > > > > > > > > > > > > > > > > > > > > > > > Mike, > > > > > > I recently launched a rails app that uses TrustCommerce as the payment > > > gateway to handle monthly subscription billing. They have a nice > > > feature called Citadel that handles storing a customer profile and > > > monthly billing so you don''t have to store credit card info in you db. > > > Being CISP-compliant is not easy :) > > > > > > I haven''t been a customer for long but am very happy with TC so far. > > > > > > TC can offer you a merchant account through a partner. We chose to > > > use BofA. It shouldn''t matter if you use a merchant account provided > > > by the payment processing gateway company or a separate merchant > > > account provider. > > > > > > The TC ruby API is very robust in my experience. You can also > > > integrate using straight HTTPS posts. I wrote a rails plugin to > > > handle the TC Citadel integration. Check it out if you''d like an > > > example of using the TC API. The plugin uses the ruby extension if > > > available, otherwise it falls back and uses HTTPS. > > > > > > The plugin svn repo is here: > > > http://svn.depixelate.com/plugins/trustcommerce_subscription/ > > > > > > I blogged about it here: > > > http://www.depixelate.com/2006/10/20/trustcommerce-subscription-plugin-released > > > > > > Hope this helps, > > > Zack > > > > > > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---