paypal / ipn-code-samples

Other
562 stars 486 forks source link

aws example is not using POST, causing length limits? #147

Open kjpgit opened 5 years ago

kjpgit commented 5 years ago

The AWS python verifier lambda looks like it is opening a very long URL via GET. I'm concerned that would fail with large orders.

It should probably use urlopen(url, data=POST_DATA) instead. I note that the C# MVC example uses POST.