HTTPWebRequest GET错误远程服务器返回错误:(415)不支持的媒体类型

时间:2013-04-12 22:40:50

标签: c# json rest get httpwebrequest

此代码应该在响应中给我JsonString。但是我收到错误

System.dll

中出现未处理的“System.Net.WebException”类型异常

其他信息:远程服务器返回错误:(415)不支持的媒体类型。

string  Url = "https://abc.test.xyz.com/123456344589753/transactions";
            HttpWebRequest request = (HttpWebRequest)WebRequest.Create(Url);
            string certThumbPrint = "ce03c469fb6c6dewwwww21886b7c1d405d954hshgd";
            X509Certificate2 cert = FindCertificateByThumbprint(certThumbPrint);
            if (cert != null)
            {
                request.ClientCertificates.Add(cert);
            }
            request.Method = "GET";
            request.MediaType = "application/json";
            request.ContentType = "application/json; charset=utf-8";
            string text;
            var response = (HttpWebResponse)request.GetResponse();
            using (var sr = new StreamReader(response.GetResponseStream()))
            {
                text = sr.ReadToEnd();
            }

解决此错误的任何建议

1 个答案:

答案 0 :(得分:2)

来自HTTP specification

  

415不支持的媒体类型

     

415(不支持的媒体类型)状态代码表示   源服务器因为有效负载而拒绝为请求提供服务   采用此方法的目标资源不支持的格式。   格式问题可能是由于请求指示的内容 -   类型或内容编码,或检查数据的结果   直接

GET请求没有有效负载,因此您正在与之通信的服务器可能不喜欢您在请求中指定Content-Type。