Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What payment gateways work well on appengine?

Well, I've been building some free apps on top of appengine, but now I want to start charging money. My question is:

What is the best way to collect payments from users. Do certain services (paypal, google checkout, etc) work better/worse with AppEngine's library restrictions? Are there any good examples or tutorials to help me learn how to do this?

like image 863
Jmlevick Avatar asked Jan 24 '11 21:01

Jmlevick


2 Answers

You can do this any way you want, really - and there's nothing App Engine specific about it. For example, you could use Google Checkout or Paypal, and charge users on any basis you want.

like image 121
Nick Johnson Avatar answered Oct 05 '22 19:10

Nick Johnson


Also just something to point out about the implementation, a simple boolean property on your user object should allow you to easily turn functions in your app on and off, depending on which tier your user has paid for.

like image 24
Ken Avatar answered Oct 05 '22 19:10

Ken