C# 解码路径上包含 %2F 的 URL,有没有办法指示 API 按原样发送 URL?

发布于 2024-10-03 08:15:23 字数 251 浏览 3 评论 0原文

我有一个以下格式的 URL abcd.com/xyz/pqr%2Fss/abc

我希望将其按原样发送到服务器。 当我使用 System.Uri 构建 Uri 时,它将其转换为 abcd.com/xyz/pqr/ss/abc 它失败了,因为我没有指定路径的 URL。

当我尝试使用双重编码时 (abcd.com/xyz/pqr%252Fss/abc) 它按原样发送 Uri,但在服务器端转换为 (abcd.com/xyz/pqr%2Fss/abc) 时失败

I am having a URL in below format
abcd.com/xyz/pqr%2Fss/abc

I want this to be send to server as it is.
When I build Uri using System.Uri it converts it to abcd.com/xyz/pqr/ss/abc
and it fails as I don't have a URL with the specified path.

When I tried with double encoding
(abcd.com/xyz/pqr%252Fss/abc) it send the Uri as it is but it fails as server side it is converted to (abcd.com/xyz/pqr%2Fss/abc)

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

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

发布评论

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

评论(2

御守 2024-10-10 08:15:23

如果您这样构建 uri:

Uri u = new Uri("http://abcd.com/xyz/pqr%2Fss/abc")

访问编码字符串,如下所示:

u.OriginalString

If you construct your uri as such:

Uri u = new Uri("http://abcd.com/xyz/pqr%2Fss/abc")

Access the encoded string like this:

u.OriginalString
極樂鬼 2024-10-10 08:15:23

我也遇到了这个问题,但我找到了解决方案:当您使用 HttpUtility.UrlEncode 来确保应用程序能够正确读取 url 时,您必须以这种方式构造链接:

http://www.abcd.com/xyz?val=pqr%2Fss

而不是像

http://www.abcd.com/xyz/pqr%2Fss

这样pqr%2FssHttpUtility.UrlEncode("SOME STRING") 的结果

I had this problem too, but I found the solution: when you use HttpUtility.UrlEncode to be sure that the application will read the url right you have to construct the link this way:

http://www.abcd.com/xyz?val=pqr%2Fss

and not like this

http://www.abcd.com/xyz/pqr%2Fss

where pqr%2Fss is the result of the HttpUtility.UrlEncode("SOME STRING")

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