Escaping username characters in basic auth URLs

人盡茶涼 提交于 2020-01-18 21:33:04

问题


When using http basic authentication, the username can be passed in the URL, e.g.

http://david@foo.com/path/

But now suppose the username is an email address, e.g. david@company.com. Doing this is clearly ambiguous:

http://david@company.com@foo.com/path/

Is there a way to escape the @ character in the username? I tried standard URL encoding:

http://david%40company.com@foo.com/path/

But that didn't do it.


回答1:


According to RFC 3986, section 3.2.1, it needs to be percent encoded:

  userinfo    = *( unreserved / pct-encoded / sub-delims / ":" )

So it looks like

http://david%40company.com@foo.com/path/

Is right. Where are you trying to read it? Maybe you need to manually decode the value?



来源:https://stackoverflow.com/questions/6718471/escaping-username-characters-in-basic-auth-urls

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!