Paypal Website Payments Standard with a Ruby/Rails application - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T06:34:02Z http://stackoverflow.com/feeds/question/265765 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/265765/paypal-website-payments-standard-with-a-ruby-rails-application 9 Paypal Website Payments Standard with a Ruby/Rails application Jay Godse 2008-11-05T16:38:29Z 2008-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#266190 4 Answer by Gabe Hollombe for Paypal Website Payments Standard with a Ruby/Rails application Gabe Hollombe 2008-11-05T18:47:02Z 2008-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#267315 11 Answer by Cameron Booth for Paypal Website Payments Standard with a Ruby/Rails application Cameron Booth 2008-11-06T00:44:10Z 2008-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#322858 2 Answer by schof for Paypal Website Payments Standard with a Ruby/Rails application schof 2008-11-27T03:14:49Z 2008-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#324998 1 Answer by john for Paypal Website Payments Standard with a Ruby/Rails application john 2008-11-28T02:53:43Z 2008-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>