我正在尝试将Atom提要加载到字符串中,并且我使用以下方法:
private string GetXml(string urlString)
{
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11;
StringBuilder sb = new StringBuilder();
// Create a new HttpWebRequest object.Make sure that
// a default proxy is set if you are behind a firewall.
HttpWebRequest myHttpWebRequest1 =
(HttpWebRequest)WebRequest.Create(urlString);
myHttpWebRequest1.KeepAlive = false;
myHttpWebRequest1.ContentType = "text/xml";
// Assign the response object of HttpWebRequest to a HttpWebResponse variable.
HttpWebResponse myHttpWebResponse1 =
(HttpWebResponse)myHttpWebRequest1.GetResponse();
Debug.WriteLine("\nThe HTTP request Headers for the first request are: \n{0}", myHttpWebRequest1.Headers);
Stream streamResponse = myHttpWebResponse1.GetResponseStream();
StreamReader streamRead = new StreamReader(streamResponse);
Char[] readBuff = new Char[256];
int count = streamRead.Read(readBuff, 0, 256);
Debug.WriteLine("The contents of the response are.......\n");
while (count > 0)
{
String outputData = new String(readBuff, 0, count);
sb.Append(outputData);
count = streamRead.Read(readBuff, 0, 256);
}
// Close the Stream object.
streamResponse.Close();
streamRead.Close();
return sb.ToString();
}
这适用于大多数Feed,但在我的浏览器中呈现为原子Feed的http://tipsforbbq.com/RSS会返回一个HTML页面(在http://tipsforbbq.com/处找到的页面)。有谁知道为什么会发生这种情况?
答案 0 :(得分:2)
我遇到了与HttpWebRequest类似的问题,我使用众所周知的用户代理解决了这个问题。
myHttpWebRequest1.UserAgent= @"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1";
我希望这可以帮到你。