-
Notifications
You must be signed in to change notification settings - Fork 209
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PDT payments intermittently broken? #239
Comments
Based on what you've said, it looks like we're going to have to be compatible with all the different things they might be sending. If you can post examples of different things you are seeing that would really help. A patch that fixes the issues would also be a huge help. Thanks so much! |
I've been running this branch for the last week or so without any issues, but it's a bit hacky to push upstream: master...djw:return-query-changes Given that
I lean towards the second option, but would like your opinion before working on a patch. :) |
Your second option sounds fine if you feel like working on a patch. Thanks! |
Apologies for the delay, I've created a new branch which implements the fix following Option 2 above: I'll test this out for a few days and then submit a PR. |
In some recent requests on my site the query parameters passed to the
return_url
have changed, in a way that's incompatible with the current implementation ofPayPalPDTForm
.Specifically, I'm now receiving:
notify_version=UNVERSIONED
which is incompatible with the decimal type of the underlying model fieldpayment_date=2021-05-11T12:00:00Z
which is incompatible withPayPalDateTimeField
Tweaking the form like this works fine locally with Django 3.1 — when I get a moment I'll create a proper patch with a test case.
Edit: I originally thought this was related to v1.1 due to the timing of the issue, but even after I reverted I'm still seeing some requests arrive with the new parameters. Looking at the code I can't see how changing the postback endpoint would cause this issue anyway!
The text was updated successfully, but these errors were encountered: