Paypal Website Payments Standard with a Ruby/Rails application - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T06:34:02Zhttp://stackoverflow.com/feeds/question/265765http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/265765/paypal-website-payments-standard-with-a-ruby-rails-application9Paypal Website Payments Standard with a Ruby/Rails applicationJay Godse2008-11-05T16:38:29Z2008-11-28T02:53:43Z
<p>Hi. </p>
<p>I would like to implement a payment solution with my Rails site using Paypal Website Payments Standard. (See <a href="https://www.paypal.com/IntegrationCenter/ic_standard_home.html" rel="nofollow">https://www.paypal.com/IntegrationCenter/ic_standard_home.html</a>). I don't want fancy gateways, and I don't want to go through the hassles related to storing credit card information. I also want to use Paypal IPN for notifications. </p>
<p>I have checked out various sites such as <a href="http://www.fortytwo.gr/blog/14/Using-Paypal-with-Rails" rel="nofollow">http://www.fortytwo.gr/blog/14/Using-Paypal-with-Rails</a>, and I'm too cheap to try Rails Kits at <a href="http://railskits.com/saas/" rel="nofollow">http://railskits.com/saas/</a>. </p>
<p>Does anybody know of a working open-source Rails application that makes use of Paypal Website Payments Standard for billing, and can you point me to that code?</p>
<p>Also, my business is in Canada, but the servers are in the USA. Do I have to sign up for Paypal.com or paypal.ca?</p>
http://stackoverflow.com/questions/265765/paypal-website-payments-standard-with-a-ruby-rails-application/266190#2661904Answer by Gabe Hollombe for Paypal Website Payments Standard with a Ruby/Rails applicationGabe Hollombe2008-11-05T18:47:02Z2008-11-05T18:47:02Z<p>Both <a href="http://spreehq.org/" rel="nofollow">Spree</a> and <a href="http://code.google.com/p/substruct/" rel="nofollow">Substruct</a> are e-commerce platforms written in Rails that support Paypal IPN. Both are open source, so it might be helpful to start by looking at how they handle Paypal Integration.</p>
http://stackoverflow.com/questions/265765/paypal-website-payments-standard-with-a-ruby-rails-application/267315#26731511Answer by Cameron Booth for Paypal Website Payments Standard with a Ruby/Rails applicationCameron Booth2008-11-06T00:44:10Z2008-11-06T00:44:10Z<p>I would also check out <a href="http://www.activemerchant.org/" rel="nofollow" title="ActiveMerchant">ActiveMerchant</a>. Here's a bit more info <a href="http://www.codyfauser.com/2008/1/17/paypal-express-payments-with-activemerchant" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/265765/paypal-website-payments-standard-with-a-ruby-rails-application/322858#3228582Answer by schof for Paypal Website Payments Standard with a Ruby/Rails applicationschof2008-11-27T03:14:49Z2008-11-27T03:14:49Z<p><a href="http://spreehq.org" rel="nofollow">Spree</a> contains an <a href="http://github.com/Gregg/spree-pp-website-standard/tree/master" rel="nofollow">extension</a> for Payapl Website Payments Standard. In fact, the popular <a href="http://envycasts.com" rel="nofollow">envycasts</a> site is a great example of this extension in use. If you want Rails and you want the Paypal Standard stuff, this is your solution.</p>
http://stackoverflow.com/questions/265765/paypal-website-payments-standard-with-a-ruby-rails-application/324998#3249981Answer by john for Paypal Website Payments Standard with a Ruby/Rails applicationjohn2008-11-28T02:53:43Z2008-11-28T02:53:43Z<p>How about using this code snippet?</p>
<p><a href="http://cubanlinks.org/articles/2005/8/3/ruby-on-rails-paypal-ipn-code-example" rel="nofollow">http://cubanlinks.org/articles/2005/8/3/ruby-on-rails-paypal-ipn-code-example</a></p>
<p>I'd prefer not to use activemerchant or other plugin if I can use this simple code snippet.</p>
<p>Any feedback?</p>