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.

Just recently I stumble upon a strange url encoding problem.

I'm trying to encode (using php urlencode) this test title:

Quiz: Are The'se Com!!ments Ab_+=&out the 2001 iPod or 2010 iPad?

and then submit it to twitter using following url (user clicks 'share this content' link on my website):

http://www.twitter.com/home/?status=http://tinyurl.com/2eag89r+Quiz%3A+Are+The%27se+Com%21%21ments+Ab_%2B%3D%26out+the+2001+iPod+or+2010+iPad%3F

But if you will follow that url - you will see that url was double encoded (maybe by browser?) for some reason and some characters (like '!?+_) stay encoded.

How can I solve that encoding problem?

share|improve this question
This is sad. I'm having this problem as well and no solutions yet – azure_ardee Feb 9 '11 at 9:11

1 Answer

It seems as though your "Share This" code may encode the title on it's own and with you doing it again it gets double encoded.

Have you tried this without your urlencode?

share|improve this answer
yep, doesn't work + there could be a symbol like & which will be treated as start of separate query string attribute if you not encode id (so the rest of the url after & will be lost). Wired thing.. – gansbrest Sep 3 '10 at 18:57
+ as you can see in my initial post - that string is encoded just once. But when you click it % character gets encoded one more time, so initial encoded characters are preserved.. – gansbrest Sep 3 '10 at 19:00

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.