django-paypal icon indicating copy to clipboard operation
django-paypal copied to clipboard

A pluggable Django application for integrating PayPal Payments Standard or Payments Pro

Results 18 django-paypal issues
Sort by recently updated
recently updated
newest added

Recently I have got 4 payments where the IPN returned with truncated `custom` field. I did create the (unencrypted) form with data like: ``` 'custom': '{"user_plan_id": 310606, "plan_id": 1, "pricing_id":...

If I switch to encrypted form, the PayPal shows me interface with much worse UX: ![Snímek obrazovky_2022-05-03_07-48-03](https://user-images.githubusercontent.com/156755/166409573-699bada8-d48c-42a8-8a72-c42109411e39.png) In contrast with the interface with unencrypted form: ![Snímek obrazovky_2022-05-03_07-48-14](https://user-images.githubusercontent.com/156755/166409581-adcdb226-d5bc-407e-9e5d-74942a42acaf.png) I don't think,...

Fixes issue #239. Rather than use the same form for both the PDT callback and the postback, split these apart. We'll take a minimal set of parameters from the callback,...

Got an error in handling IPN form: _Invalid form. (address_city: Ensure this value has at most 40 characters (it has 44).)_ Please allow this pull request.

needs-info

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 of `PayPalPDTForm`. Specifically, I'm now...

Hi! I received 3 IPNs for the same transaction with the same data, but only one was flagged as duplicate. They have all the same transaction id and all the...

Some seemingly random small percentage of IPNs fail with ``` Invalid postback. ( Fatal Failure ) ``` We can't find any way to reliably reproduce the error, resorting to manually...

Hi! I was contacted by PayPal to implement a new type of button that includes also credit card payments. The button is now initialized via some javascript calls. Did you...

![image](https://user-images.githubusercontent.com/419927/60140009-b8dd7600-9775-11e9-8818-222f403fdb07.png) The IPNs fail to process due to this. Can verify that the memo field in the POST dump is 308 characters long.

I want to customize the pay now button to meed the theme of my template with icons and class like ``` Get Started ``` In the documentation, I can only...