When trying to work with PayPal IPN POST payload in Pyramid (and, probably, others) I get decoding errors:
[...]
File "./project/views.py", line 716, in paypal_ipn
message = request.POST
File "build/bdist.linux-x86_64/egg/webob/request.py", line 745, in POST
File "build/bdist.linux-x86_64/egg/webob/multidict.py", line 74, in from_fieldstorage
File "build/bdist.linux-x86_64/egg/webob/multidict.py", line 67, in <lambda>
File "/sites/ts/lib64/python2.6/encodings/utf_8.py", line 16, in decode
return codecs.utf_8_decode(input, errors, True)
UnicodeDecodeError: 'utf8' codec can't decode byte 0xf3 in position 5: invalid continuation byte
How to fix that?
Edit your "question" to be a real question and we'll be good to go!
For some ungodly reason PayPal still isn't in 21st century and still uses Windows-1252 encoding by default. That might create some problems as it is quite reasonable to expect unicode to be an encoding of choice nowadays.
That might result in something like following traceback when using Pyramid:
[...]
File "./project/views.py", line 716, in paypal_ipn
message = request.POST
File "build/bdist.linux-x86_64/egg/webob/request.py", line 745, in POST
File "build/bdist.linux-x86_64/egg/webob/multidict.py", line 74, in from_fieldstorage
File "build/bdist.linux-x86_64/egg/webob/multidict.py", line 67, in <lambda>
File "/sites/ts/lib64/python2.6/encodings/utf_8.py", line 16, in decode
return codecs.utf_8_decode(input, errors, True)
UnicodeDecodeError: 'utf8' codec can't decode byte 0xf3 in position 5: invalid continuation byte
To fix that you have to either:
Or
Depending on type of your PayPal account. Hope that would save someone and hour of life.
For some ungodly reason PayPal still isn't in 21st century and still uses Windows-1252 encoding by default. That might create some problems as it is quite reasonable to expect unicode to be an encoding of choice nowadays.
To fix that you have to either:
Or
Depending on type of your PayPal account. Hope that would save someone an hour of life.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With