C# 解码路径上包含 %2F 的 URL,有没有办法指示 API 按原样发送 URL?
我有一个以下格式的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您这样构建 uri:
访问编码字符串,如下所示:
If you construct your uri as such:
Access the encoded string like this:
我也遇到了这个问题,但我找到了解决方案:当您使用 HttpUtility.UrlEncode 来确保应用程序能够正确读取 url 时,您必须以这种方式构造链接:
而不是像
这样
pqr%2Fss
是HttpUtility.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:and not like this
where
pqr%2Fss
is the result of theHttpUtility.UrlEncode("SOME STRING")