Hi All,
I have an asp.net 3.5 page that uses twitter api to retrieve tweets from Twitter as following:
"https://api.twitter.com/1.1/statuses/user_timeline.json?count=10&screen_name=BillGates"
it's working and retrieve the latest 10 tweets but there is a problem:
the tweets text come as following:
"Wealth isn\u2019t the only measure of human happiness. Here are a few others:"
it should be:
"Wealth isn't the only measure of human happiness. Here are a few others:"
i.e. the " ' " comes as " \u2019 "
and all the arabic characters come in this format
how can I show the tweets text in its correct format?
thanks in advance
Go to the complete details ...