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.

Generally, ftp url format is ftp://user[:pass]@ip[:port]/path

But now I got this string:

ftp://dude:1.1.1.1@1.1.1.1/@1.1.1.1/fml

It seems it's ambiguous because the parse result can be:

  1. password=1.1.1.1, path=@1.1.1.1/fml
  2. password=1.1.1.1@1.1.1.1/, path=fml

Should I have to just tell the client this is illegal, or is there any more friendly way to deal with it? Thanks..

share|improve this question
1  
You could always try encoding the @ into %40, assuming your ftp client is URL-aware. – Marc B May 8 '12 at 4:07
This works thank you. So I think I should tell the clients to follow the RFC document:) – wolf5x May 8 '12 at 7:00

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.