vote up 9 vote down star
5

Hi.

I would like to implement a payment solution with my Rails site using Paypal Website Payments Standard. (See https://www.paypal.com/IntegrationCenter/ic_standard_home.html). 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.

I have checked out various sites such as http://www.fortytwo.gr/blog/14/Using-Paypal-with-Rails, and I'm too cheap to try Rails Kits at http://railskits.com/saas/.

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?

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?

flag
Spree seems to also have a plugin for this at github.com/Gregg/spree-pp-website-standard/… – Jay Godse Nov 5 '08 at 16:58
I've used ActiveMerchant before with a Ramaze application, and it works, but my comment on that is if you can avoid it, avoid PayPal, as it is confusing and not userfriendly to develop with/for. – Pistos Nov 5 '08 at 17:28

4 Answers

vote up 1 vote down

How about using this code snippet?

http://cubanlinks.org/articles/2005/8/3/ruby-on-rails-paypal-ipn-code-example

I'd prefer not to use activemerchant or other plugin if I can use this simple code snippet.

Any feedback?

link|flag
vote up 2 vote down

Spree contains an extension for Payapl Website Payments Standard. In fact, the popular envycasts 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.

link|flag
vote up 11 vote down

I would also check out ActiveMerchant. Here's a bit more info here.

link|flag
vote up 4 vote down

Both Spree and Substruct 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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.