【发布时间】:2015-07-23 10:30:12
【问题描述】:
我正在尝试从 CloudFlare 托管的网站下载网页数据。它使用 HTTPS 并在进入页面之前获取连接 ID。
我正在尝试在 WebRequest 和 WebResponse 中获取 id,但出现以下错误:
System.dll 中出现“System.Net.WebException”类型的未处理异常 附加信息:远程服务器返回错误:(503) Server Unavailable。
我试图从 Fiddler 发出请求,这是响应:
HTTP/1.1 503 Service Temporarily Unavailable
Date: Tue, 12 May 2015 13:38:17 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: keep-alive
Set-Cookie: __cfduid=d57a7d982035dad7ebafe63444d125e451431437897; expires=Wed, 11-May-16 13:38:17 GMT; path=/; domain=.hornystress.me; HttpOnly
X-Frame-Options: SAMEORIGIN
Refresh: 8;URL=/cdn-cgi/l/chk_jschl?pass=1431437901.815-Ym1g5qTodK
Cache-Control: no-cache
Server: cloudflare-nginx
CF-RAY: 1e5685ed559606ee-LHR
这是我的代码:
public static string GetCookie(string link)
{
WebRequest request = WebRequest.Create("https://hornystress.me");
request.Proxy = WebProxy.GetDefaultProxy();
request.Timeout *= 100;
WebResponse response = request.GetResponse();
return response.Headers.Get("Set-Cookie");
}
【问题讨论】:
-
我已经编辑了你的标题。请参阅“Should questions include “tags” in their titles?”,其中的共识是“不,他们不应该”。
-
有人吗?请其重要
标签: c# http httpwebrequest cloudflare http-status-code-503