为了账号安全,请及时绑定邮箱和手机立即绑定

无法管理重定向

无法管理重定向

C#
白猪掌柜的 2021-04-27 21:25:34
我正在尝试管理此站点上的重定向:https://uk.soccerway.com,所以我编写了以下代码:public static string GetHtml(string url){        HttpWebRequest webReq = (HttpWebRequest)WebRequest.Create(url);        try        {            webReq.AllowAutoRedirect = false;            HttpWebResponse response = webReq.GetResponse() as HttpWebResponse;                            WebClient client = new WebClient();            client.Encoding = System.Text.Encoding.UTF8;            url = (response.Headers["Location"] != null) ? response.Headers["Location"] : url;            return client.DownloadString(url);        }        catch (WebException)        {            throw;        }    }这将返回一个异常,特别是:“远程服务器返回错误:(302)临时移动。”我做错了什么?
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 131 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信