I'm integrating Paypal standard IPN to Django site using django-paypal. I want to integrate subscribe feature, but have a simple questions while working with it. Bellow is the dictionary that I'm using.
paypal_dict = {"cmd": "_xclick-subscriptions",
"business": settings.PAYPAL_RECEIVER_EMAIL,
"a3": "10.00", # monthly price
"p3": 1, # duration of each unit (depends on unit)
"t3": "M", # duration unit ("M for Month")
"src": "1", # make payments recur
"sra": "1", # reattempt payment on payment error
"no_note": "1", # remove extra notes (optional)
"item_name": "Fogg mobile monthly fee",
...
}
I want to check signals like "subscription_signup", "payment_was_successful". But above dictionary assume that payment occurs once per month. I want payment occur once per minute or 30 seconds for testing purpose while development, but least time period is 1 day("t3": "D", "p3": 1).
Is there any way I can do it per minute for development purpose?
Looking forward to get help from community. :)