django-registration with paypal integration

Posted by GrumpyCanuck on Stack Overflow See other posts from Stack Overflow or by GrumpyCanuck
Published on 2010-03-27T03:05:57Z Indexed on 2010/03/27 3:13 UTC
Read the original article Hit count: 481

I'm trying to figure out how to integrate django-registration with django-paypal. Being a Django n00b, I'm trying to figure out how to implement a flow like this:

  1. User signs up using django-registation with 'active' flag set to 0
  2. After registering, send user to PayPal for a subscription
  3. When they come back from PayPal successfully, I want to set 'active' to 1

I've been looking at the django-registration documentation and don't quite understand how to use different backends or implement a flow the way I want.

Any tips on how to accomplish this would be greatly appreciated. django-paypal won't be a problem for me as I've done PayPal integration before (in PHP for a self-published book about CakePHP).

© Stack Overflow or respective owner

Related posts about django

Related posts about django-registration