HttpWebRequest.GetResponseStream返回一个空字符串

时间:2013-01-27 12:14:06

标签: c# httpwebrequest meta

我一直在尝试各种可能的方式下载使用HttpWebRequest从页面获取响应流,这在其他所有内容中都可以正常工作,但不能使用此页面。如你所见,返回的数据是一个HTML,但它有一个我不是专家的元标记,但是我试图获得这个块

{"error":4,"message":"Unsupported link format or unsupported hoster"}

似乎我不能,我试图将GET内容类型指定为“text / json”,但没有任何帮助。

下面是我在浏览器上打开页面时返回的HTML内容,但在代码中它返回空字符串。

    <html>
    <meta style="visibility: hidden !important; display: block !important; width: 0px !important; height: 0px !important; border-style: none !important;"></meta>
    <head></head>
    <body>
      <pre style="word-wrap: break-word; white-space: pre-wrap;">{"error":4,"message":"Unsupported link format or unsupported hoster"}
      </pre>
    </body>
    </html>

编辑:

我尝试在localhost上的一个页面中复制上面相同的html,并尝试获取它的内容并且它实际上有效,是否可能有一些限制在IIS中可能会阻止获取内容?

3 个答案:

答案 0 :(得分:1)

您是否有证据证明问题出在客户身上?更合适的问题是:为什么服务器发送这个奇怪的内容?客户端只接收服务器发送的任何内容。

我建议您调试服务器以查找,或者询问包含服务器端代码的新问题,并具体询问它。

答案 1 :(得分:0)

尝试使用WebRequest课程。 Here您找到了相关文档。

您在页面中有此示例:

// Create a request for the URL.        
WebRequest request = WebRequest.Create ("[your_url]");
// If required by the server, set the credentials.
request.Credentials = CredentialCache.DefaultCredentials;
// Get the response.
HttpWebResponse response = (HttpWebResponse)request.GetResponse ();
// Display the status.
Console.WriteLine (response.StatusDescription);
// Get the stream containing content returned by the server.
Stream dataStream = response.GetResponseStream ();
// Open the stream using a StreamReader for easy access.
StreamReader reader = new StreamReader (dataStream);
// Read the content. 
string responseFromServer = reader.ReadToEnd ();
// Display the content.
Console.WriteLine (responseFromServer);
// Cleanup the streams and the response.
reader.Close ();
dataStream.Close ();
response.Close ();

这将在Console中打印该页面的HTML内容。

答案 2 :(得分:0)

我有同样的问题,原因是我之前已经将方法设置为HEAD,并且在以后的版本中需要解析正文。