将 HttpClient 与 Windows-1252 编码的 url 结合使用
本文关键字:url 结合 编码 HttpClient Windows-1252 | 更新日期: 2023-09-27 18:35:50
我正在尝试使用System.Net.HttpClient与非常简单的Web API进行通信。这个 API 客户端有一个搜索功能,我可以在其中按用户的名字搜索用户。问题是 API 在 url 中使用 Windows 1252 编码,当我尝试将 Windows 1252 编码的 url 与 HttpClient 一起使用时,HttpClient 在发出请求之前使用 utf-8 对 url 进行编码。
string name = "Arnar Aðalsteinsson"; // My name, note the 'ð' character
string encodedName = HttpUtility.UrlEncode(name, Encoding.GetEncoding(1252));
string url = string.Format("http://website.com/find?name={0}", encodedName);
// url = http://website.com/find?name=Arnar+A%f0dalsteinsson
string result = httpClient.GetStringAsync(url)
// result = "Name A%f0dalsteinsson is unknown", actual output from API service
// httpClient encodes the previously encoded parameter to A%25f0dalsteinsson
当我在浏览器中使用编码地址(http://website.com/find?name=Arnar+A%f0dalsteinsson)时,它可以正常工作。
任何帮助表示赞赏。
尝试重现此问题时找不到问题,它在我的这边工作正常,请尝试使用 Fiddler 查看您的请求结果,可能是服务器端的问题。
这是我的代码:
string name = "Arnar Aðalsteinsson";
string encodedName = HttpUtility.UrlEncode(name, Encoding.GetEncoding(1252));
string url = string.Format("http://website.com/find?name={0}", encodedName);
HttpClient httpClient = new HttpClient();
try
{
**string result = httpClient.GetStringAsync(url).Result;**
}
catch (System.AggregateException ex) {
Debug.WriteLine(ex.Message);
}
结果 : website.com/find?name=Arnar+A%f0alsteinsson