How do I post symbols (eg. ©) in a wall post using the graph api? Html entities (eg. ©) aren't parsed in facebook.
相关问题
- facebook “could not retrieve data from URL”
- JDK 11. javax.net.ssl.SSLPeerUnverifiedException:
- To Get the Access Token for facebook api
- Access paging in iOS - previous and next : retriev
- I am getting an error when deleting the scheduled
相关文章
- Facebook login for group members
- The method FB.api will stop working when called fr
- How to fix 'Facebook has detected MyApp isn
- Extract poll results from Facebook Graph API
- AS3 API: Deleting App Invites
- Post a photo to a page for iOS
- Facebook Graph API pagination is not giving the ex
- Centered dialog on Facebook canvas app
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");