How do I post symbols (eg. ©) in a wall post using the graph api? Html entities (eg. ©) aren't parsed in facebook.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

All large text fields are utf-8, use the actual character used to represent it which is U+00A9

If you have HTML entities you can decode with html_entity_decode()

$utf8_text = html_entity_decode("test © foo", ENT_COMPAT, "UTF-8");

link|improve this answer
+1, example: $facebook->api('/USER_ID/feed', 'post', array('message'=>utf8_encode('all rights reserved ©'))); – ifaour Oct 17 '11 at 17:06
@ifaour Thanks! I couldn't find anything on google about this – John Himmelman Oct 17 '11 at 18:03
@JohnHimmelman, you are welcome...Facebook employees should learn to provide some code from time to time ;-) the SO community encourage this! – ifaour Oct 17 '11 at 18:18
1  
you don't need to utf8_encode() anything that is already utf8 encoded. Typing in the copyright character verbatim would do this. If you really want to change htmlentities back to unicode use: $utf8_text = html_entity_decode("test © foo", ENT_COMPAT, "UTF-8"); – Scott MacVicar Oct 17 '11 at 20:20
feedback

Your Answer

 
or
required, but never shown

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