I am having some issues with PayPal IPN. The documentation uses ASCII encoding. I am using UTF-8. It works fine but as a rarest case I get some random characters. As far as I know the Paypal account can be setup for different encoding. Is there any way to identify that?.

Or is there a standard way of handling all the cases.

link|improve this question

44% accept rate
feedback

2 Answers

up vote 1 down vote accepted

I see this as a part of the solution.

specifying the encoding method used in the form we send to paypal

<INPUT TYPE="hidden" name="charset" value="utf-8">

This link is more helpful

link|improve this answer
feedback

You can set the encoding for IPN via Profile > My selling tools > PayPal button language encoding > More Options. (direct link)

link|improve this answer
That's true I agree with that, but what if my IPN listener does not know about that encoding? – tmjam Dec 22 '11 at 22:22
1  
The IPN message itself contains a 'charset' field as well which you can check against. See also: cms.paypal.com/us/cgi-bin/… – Robert Dec 23 '11 at 0:16
Thanks Robert that helps. I just wonder if it will overwrite the setting made on the profile and is it a good practice – tmjam Dec 23 '11 at 0:32
That value should show the setting from the Profile, since there is no other way to set/override the IPN charset. – Robert Dec 24 '11 at 16:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.