在基本身份验证 URL 中转义用户名字符

发布于 2024-11-24 19:30:21 字数 805 浏览 1 评论 0原文

使用http基本身份验证时,可以在URL中传递用户名,例如

http://[email protected]/path/

但现在假设用户名是电子邮件地址,例如 [电子邮件受保护]。这样做显然是不明确的:

http://[email protected]@foo.com/path/

有没有办法转义用户名中的@字符?我尝试了标准 URL 编码:

http://david%[email protected]/path/

但这并没有成功。

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

http://[email protected]/path/

But now suppose the username is an email address, e.g. [email protected]. Doing this is clearly ambiguous:

http://[email protected]@foo.com/path/

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

http://david%[email protected]/path/

But that didn't do it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独闯女儿国 2024-12-01 19:30:21

根据 RFC 3986,第 3.2.1 节,它需要进行百分比编码:

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

所以它看起来

http://david%[email protected]/path/

是正确的。你想在哪里阅读它?也许您需要手动解码该值?

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%[email protected]/path/

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文