Paypal IPN stopped sending back POST request to return url -


i'm using django-paypal. work live api, not sandbox. worked fine previously, time ago stopped receiving post requests on return url (it's https://my_domain.tld/payment/success/ in example form).

the form use:

<form class="paypal-form" action="https://www.paypal.com/cgi-bin/webscr" method="post">     <input type="hidden" name="business" value="my@acc" id="id_business" />     <input type="hidden" name="amount" value="9999.00" id="id_amount" />     <input type="hidden" name="item_name" value="item name #xxx" id="id_item_name" />     <input type="hidden" name="notify_url" value="https://my_domain.tld/paypal/" id="id_notify_url" />     <input type="hidden" name="cancel_return" value="https://my_domain.tld/payment/cancel/" id="id_cancel_return" />     <input name="return" type="hidden" value="https://my_domain.tld/payment/success/" id="id_return_url" />     <input type="hidden" name="custom" value="some custom data" id="id_custom" />     <input type="hidden" name="invoice" value="inovice-id-xxx" id="id_invoice" />     <input type="hidden" name="cmd" value="_xclick" id="id_cmd" />     <input type="hidden" name="charset" value="utf-8" id="id_charset" />     <input type="hidden" name="currency_code" value="eur" id="id_currency_code" />     <input type="hidden" name="no_shipping" value="2" id="id_no_shipping" />     <input type="hidden" name="rm" value="2" id="id_rm" />     <button type="submit" name="submit" alt="pay paypal!">pay paypal!</button> </form> 

notify_url still getting data , payment process working fine. when user clicks "return merchant" after payment on paypal site, he's being sent return, , request.post empty (looks use get, not post).

i haven't changed anything, it's stopped working.

any suggestions?

upd

i've added logging yesterday , can see weird.

i had 3 payments yesterday, @ 14:41:40 they've sent post success url, , @ 14:45:37 have not (request.post empty), , @ 22:34:36 they've sent again.


Comments

Popular posts from this blog

python Tkinter Capturing keyboard events save as one single string -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

javascript - Z-index in d3.js -