-
Notifications
You must be signed in to change notification settings - Fork 208
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
Fatal Failure / 400 Bad Request #117
Comments
I haven't seen this, but I don't generally deal with a large volume of IPNs. It would help if you gave more info about where this error message is appearing - there are multiple parts of the process where an error can occur. I would also create a fork and add logging calls until you can give additional info. |
It does sound like a bug regarding duplicate transactions IDs, please file a separate issue/PR about that, thanks. |
From what I can gather, the IPN postback is returning that HTML page rather than "VERIFIED" or "INVALID". I don't have any other information since we can't reliably reproduce it, and i had to focus on the deadline. I'll try to get a minimal example set up with it happening and add heavy logging. I mostly made this ticket to see if it was a known issue, since the (relatively few) other mentions of this on StackOverflow and such have no additional information. It looks like a generic error page (I've had the exact same response in my browser while trying to pay for something before), so it seems to be a bug on PayPal's end, but with so few Google results, it seems like something must trigger it. I understand if you want to close this issue since it's potentially not a django-paypal problem at all, but if I find out anything more, I'll post it here. |
I'm going to close this ticket, but please do post more info and re-open if you can provide something that will enable django-paypal to behave better in this situation. If we are hitting an error condition on PayPal, I think the best thing to do is leave the behaviour as it is - there isn't really anything we can do, and users of django-paypal need to be alerted to the problem. Thanks! |
This issue apparently is a known PayPal issue. See: http://stackoverflow.com/questions/33556807/django-paypal-ipn-requests-with-invalid-postback Hopefully it will be fixed soon, but I am not holding out too much hope. |
See 79b2227 which may help with part of this. |
Hi I'm experiencing the same. It is super minor, because Ive seen only 2 in 1500+ IPNs. But these two happened this week.
Maybe this happens in python 3 ? I changed only a few months ago. According to the above answer, it sounds like an encoding problem. Has it been solved in version 1.0.0 ? I'm using 0.5.0. |
@newearthmartin it;s unlikely to be different in 1.0.0. If you could capture the exact, raw payload that causes this we might be able to debug it. Most likely it is some encoding issue and that makes it harder because getting the raw payload can be hard. |
Do you mean to capture the raw request headers and body received in the |
Hi @spookylukey ! |
@newearthmartin, I guess trailing |
(Yes it was a typo, I updated the pastebin)
which is called from this method:
And I see that I this
Previously I pasted the first request, I now understand that I need to capture the payload of this POST to paypal. I will add code to capture it, stay tuned! |
Ok, so I see that
then we post it back
So I think that the only thing that could go wrong is that something goes missing in the |
Can be PayPal issue. |
Would it be possible to store the request body plain and not decode/encode, and just attach it as is in the postback? BTW, the encoding is a setting in PayPal interface https://pasteboard.co/Io4vJmW.png |
The We do this here: https://github.com/spookylukey/django-paypal/blob/master/paypal/standard/models.py#L392 If there were non-ascii chars in the body, we'd be seeing exceptions here and we are not. I'm not aware of an easy way to store raw bytes in a cross-DB safe way, that's why it's a unicode field. We then need to convert this unicode object back to bytes to do a So I don't think that changing the
Then
which is That is a different level of encoding and decoding, which we don't need here. My best guess at the moment is this is a spasmodic PayPal bug. |
We experiencing same issue in our website. This seems like a PayPal bug, since when we are resending IPN to our backend (emulating PayPal behaviour), it's being processed correctly and PayPal NVP api verifies this IPN as expected. We've started experiencing such errors from 11 July 2019 or so. I've already made a ticket in PayPal support but I don't think that they will do anything with it. |
Actually, there is a way to store binary data directly in Django, https://docs.djangoproject.com/en/2.2/_modules/django/db/models/fields/#BinaryField which has been around since 1.6 (after django-paypal was created). However, it comes with some disadvantages, being harder to read (as arbitrary binary data there is no obvious way to display it, despite the fact we know it can only be ascii chars), and we'd need migrations etc., and test them across multiple DBs. Plus I'm pretty sure this has nothing to do with the issue we are seeing, so there wouldn't seem to be any benefit in using it. |
@astrikov-d Thanks for looking at this. I agree it is most likely a PayPal bug. We did think before about the possibility of automatically retrying if you get failure the first time, but I have no idea if that would help, and seems to introduce more uncertainty into our handling of it. Would some manual but easy method to retry might be a benefit - for example, a "retry" button on the Django admin page for failed IPNs perhaps? I'm not sure that is possible, but could be helpful. |
I'm agreeing that it looks like a PayPal bug. That said, storing in the db would not be necessary only a property in the ipn object that doesn't need to be persisted. |
It seems like PayPal's response to the postback is supposed to have an HTTP status code of 200, and a body of "VERIFIED" or "INVALID". So what about immediately retrying if the status code of the response is not 200? Maybe make 3 attempts and then log the invalid postback the same as it does now if none are successful. |
@vorwrath if these responses are returning non 200 responses that does sound like a reasonable solution, I'd accept a patch for that. |
See also #216 |
I'm actually getting this error consistently. Mine doesn't say failure though, but I keep getting this one even though the transaction is completed. I haven't had 1 that wasn't flagged or Invalid yet. My invalid ipn signal is the only one that's been firing. I've tried this on Windows and Heroku. EDIT: It randomly worked once, but after it stopped again. Response:
Flag issue:
Settings
View
Signals
|
Hello everyone, @spookylukey - This topic is quite old but still open. I am getting %95 400 Bad and %5 200 OK from paypal. I tried @vorwrath solution by adding a while loop in _postback function. 4 tries in total with 5 seconds interval. My results: Roughly; % 55 of the postback returned OK in the second try. % 25 of the postback returned OK in the third try. The rest % 20 returned OK in the fourth or fifth, rarely returned 400 maybe %1-3. Code is here:
What are your toughts about this solution? Do you think it is reliable ? Why PayPal is doing this ? |
If you could post a full, raw dump of the requests/responses involved, that might help debug this. However, if you are getting success after repeating exactly the same request, that must be a PayPal bug AFAICS. So I think you should be reporting this to PayPal. As for doing retries, I'm open to making this easier. In general, adding |
I can confirm this bug. I get it inconsistently when using my own implementation using Paypal Smart buttons + paypal IPN setup at my own side, using the new API. I don't also get why the IPN examples are archived on PayPal github. The whole guide is an big mess, and I hate working with that. Even my-country (I'm from Poland) payment providers have SO BETTER integration. WHAT A BIG MESS. I get paypal 400 error only when charset in request in IPN is set to I assume it can be because paypal uses load balancer in part of connection to servers, which connects sometimes to properly configured, and sometimes to invalid configured machine. I don't have other idea why it can be wrong. |
I am writing this to PayPal. I do not know if below request response example can help but as @HoshiYamazaki said, if the response comes with iso-8859-1 encoding, it is a bad request. As you can see, 7th request came UTF-8 and went through no problem. Code is same as in previous post; a loop of 5 sec. Django-Paypal is already taking care of this problem by using QueryDict so I dont know what is the solution.
Maybe it is just Sandbox issue, may not happen in production. There is a post below if you have not seen it... https://community.jboss.org/thread/38625 request: {'method': 'POST', 'url': 'https://ipnpb.sandbox.paypal.com/cgi-bin/webscr', 'headers': {'User-Agent': 'python-requests/2.24.0', 'Accept-Encoding': 'gzip, deflate', 'Accept': '/', 'Connection': 'keep-alive', 'Content-Length': '808'}, '_cookies': <RequestsCookieJar[]>, 'body': b'cmd=_notifyvalidate&mc_gross=282.70&invoice=---&protection_eligibility=Eligible&payer_id=---&payment_date=21%3A13%3A17+Aug+03%2C+2021+PDT&payment_status=Completed&charset=UTF8&first_name=John&mc_fee=8.50¬ify_version=3.9&custom=&payer_status=verified&business=---&quantity=1&verify_sign=--.&payer_email=---&txn_id=---&payment_type=instant&last_name=Doe&receiver_email=---&payment_fee=&shipping_discount=0.00&rec response: encoding: iso-8859-1 reason: Bad Request 2 trying response: encoding: UTF-8 reason: OK 7 trying |
@cankasap Everything is clear, the paypal has problem with IPN endpoint: They provided me alternative address which should work, please try it. |
@HoshiYamazaki I cant thank you enough, it works !!! I had almost given up... Got 25 200 OK out of 25... for the first time :) |
Some seemingly random small percentage of IPNs fail with
We can't find any way to reliably reproduce the error, resorting to manually making payments repeatedly until it triggers. A Google search of "Fatal Failure" gives a few results, but no real suggestions on the cause, so I was wondering if you had seen this before.
Sometimes PayPal will attempt the IPN a few more times, but it will either error in the same way, or django-paypal will consider it invalid due to "Duplicate txn_id", where the only previous records of the same transaction ID are the failed postbacks. I think this is a bug with
duplicate_txn_id
not filtering out flagged IPNs (they all have the same status, so it thinks they're duplicates), but maybe this is desired behaviour and I'm missing something.The fact that PayPal sometimes repeats the failed IPNs and sometimes doesn't suggests that sometimes PayPal thinks it's confirmed the postback when giving the error, but I have no idea what could cause that.
Any suggestions? We've been banging our heads against the wall here.
The text was updated successfully, but these errors were encountered: