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.

Following the question Connecting to the server which password contains "@" symbols using ftp protocol, the answer is right. URLEncoder encodes @ into %. But let's say password already contains % and I am not encoding it, then how URL class will get to know that password in not encoded one?

share|improve this question

closed as not constructive by Jav_Rock, vstm, xdazz, Yan, Graviton Oct 6 '12 at 6:44

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

up vote 0 down vote accepted

The browser (or method that is parsing the FTP URL) is URL Decoding the password. So if you don't URL Encode the password and you pass a % it will attempt to decode it anyways and therefor won't work. The same thing applies to @ and :. This answer over on Super User includes more detailed proof that this is in fact what is happening (they inspected the raw TCP/IP traffic with Wireshark to see what was being passed).

share|improve this answer

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