Reputation: 21
I can successfully post a message to my Facebook feed using the Facebook Graph API. The script I'm using to achieve this sometimes have to include special characters like "é","è",etc...And when this happens, the message appears with these special characters replaced by question mark (?) instead of the actual character. I've been trying to encode characters prior to posting it and their shows up as is.
How can I solve this problem?
Upvotes: 2
Views: 1636
Reputation: 1006
make sure you're using UTF-8 encoding. facebook is UTF-8 and will have problems with special characters if you're using the default ANSI.
Upvotes: 1