Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to format a url passed to Facebook Sharer via AS3 using navigateToURL(new URLRequest(request), "_blank");.

The url that is passed has a lot of strange characters. What is the best way to get the correct output?

This works: http://www.facebook.com/sharer.php?u=www.somesiteurlthatdoesnotexist.com?title=This works fine

This does not work: http://www.facebook.com/sharer.php?u=www.somesiteurlthatdoesnotexist.com?title=Jag behöver fixa en url som funkar med åäl och & tecken

share|improve this question

1 Answer

up vote 1 down vote accepted

Try this:

escape("Jag behöver fixa en url som funkar med åäl och & tecken");

It should make it "URL encoded".

share|improve this answer
Should work with the & character also? – Mattias Oct 3 '11 at 9:29
Yep! It will encode it to "%26". This is then decoded back into "&" by the server/browser. – Jonatan Hedborg Oct 3 '11 at 9:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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