up vote 0 down vote favorite
share [g+] share [fb]

I am parsing the public timeline xml from twitter and want to display images next to the statuses.

The problem is some image urls contain strange characters:

e.g.

http://s3.amazonaws.com/twitter_production/profile_images/68803670/Gryn_i_h%E4ngmattan_normal.jpg

Some of the characters can be replaced with urlencode(), but I have no idea what to do with asian text or other strange urls.

All I want is something that will return me the default twitter profile png if no valid image url is supplied.

Any hints ?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

I believe you should use UTF-8 Encoding instead. The correct URL would then be: http://s3.amazonaws.com/twitter_production/profile_images/68803670/Gryn_i_h%C3%A4ngmattan_normal.jpg

Doesn't flash do that automatically when you read the string from the utf-8 encoded public timeline xml? If you just output the link http://s3.amazonaws.com/twitter_production/profile_images/68803670/Gryn_i_hängmattan_normal.jpg the browser should take care of the encoding, no?

Edit: looks like the SO code has problems with non-ascii characters in a url as well :)

link|improve this answer
but ... but ... non-ascii chars aren't even allowed in an url, that's what urlencoding is for in the first place. and yes, the problem here is that the singlebyte (ISO) string is encoded, not the multibyte (utf) one. – stefs May 19 '09 at 13:05
but in the actual url there is no unicode, it's encoded into e.g. %C3%A4 for ther umlaut ä. The browser will do that for you. – Ben Schwehn May 19 '09 at 15:27
I'm looking for a quick & dirty fix...if that url cannot be used, just use the default twitter image – George Profenza May 19 '09 at 15:29
what I mean is, if you type s3.amazonaws.com/twitter_production/profile_images/68803670/… into your browser's location box it will issue an GET /twitter_production/profile_images/68803670/Gryn_i_h%C3%A4ngmattan_normal.jpg HTTP/1.1 I don't see why you shouldn't just have utf-8 encoded URL in an UTF-8 encoded html page and let the browser do what's neccessary, but there might be good reasons? Firefox even shows the unicode glyph and not the encoding when you type a UTF-8 encoding into the address bar. – Ben Schwehn May 19 '09 at 15:33
Thanks Ben! Didn't have time to check back and say thanks until now. – George Profenza May 30 '09 at 21:45
feedback

Your Answer

 
or
required, but never shown

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