I'm using dcramer's fork of django-paypal, but I always encounter an invalid IPN while working with my sandbox accounts.
I receive the following IPN:
Invalid postback. (INVALID)
I tried everything that showed up on google:
- checked seller & buyer emails
- sandbox accounts are both verified
- I use
form.sandbox
to render the paypal form - tried removing custom values
- there is no non-ascii character in the request
When manually checking the request with https://www.sandbox.paypal.com/cgi-bin/webscr, I also get INVALID
.
Did someone encounter this issue ? Is there any more-verbose page to validate ipn requests ?
INVALID
response, which is just a raw text containing the word. I get no html like you do. However, I'll try to make my own ipn view to see if it works better. I see that django-paypal suppressesN/A
dates in the POST parameters, it could be the reason. – Dropper