WebException:远程服务器返回错误:NotFound Windows Phone Youtube Html

时间:2015-04-26 12:37:37

标签: c# windows-phone-8 system.net.webexception

我想在youtube搜索结果中使用以下代码获取Windows Phone应用程序中的元素和标签。

public partial class Page1 : PhoneApplicationPage
{
    string keyword;
    public Page1()
    {
        InitializeComponent();

    }

    protected override void OnNavigatedTo(NavigationEventArgs e)
    {
        NavigationContext.QueryString.TryGetValue("parameter", out keyword);
        LoadResults();
    }

    public void LoadResults()
    {          
        WebClient codeSampleReq = new WebClient();
        codeSampleReq.DownloadStringCompleted += codeSampleReq_DownloadStringCompleted;
        codeSampleReq.DownloadStringAsync(new Uri("https://www.youtube.com/results?search_query=" + keyword));
    }



    void codeSampleReq_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
    {
        try
        {
            HtmlDocument htmlDoc = new HtmlAgilityPack.HtmlDocument();
            htmlDoc.OptionFixNestedTags = true;
            htmlDoc.LoadHtml(e.Result);
            HtmlNode divContainer = htmlDoc.GetElementbyId("a");
            if (divContainer != null)
            {
                HtmlNodeCollection nodes = divContainer.SelectNodes("a");
                foreach (HtmlNode trNode in nodes)
                {

                }
            }
        }
        catch (Exception ex)
        {
            MessageBox.Show("Unable to download" + ex.Message);
        }
    }
}

并在下面获得例外:

  

{System.Net.WebException:远程服务器返回错误:   未找到。 ---> System.Net.WebException:远程服务器返回了一个   错误:NotFound。在   System.Net.Browser.ClientHttpWebRequest.InternalEndGetResponse(IAsyncResult的   asyncResult)at   System.Net.Browser.ClientHttpWebRequest<> c__DisplayClasse.b__d(对象   sendState)at   System.Net.Browser.AsyncHelper<> c__DisplayClass1.b__0(对象   sendState)---内部异常堆栈跟踪结束--- at   System.Net.Browser.AsyncHelper.BeginOnUI(SendOrPostCallback   beginMethod,Object state)at   System.Net.Browser.ClientHttpWebRequest.EndGetResponse(IAsyncResult的   asyncResult)在System.Net.WebClient.GetWebResponse(WebRequest   请求,IAsyncResult结果)at   System.Net.WebClient.DownloadBitsResponseCallback(IAsyncResult的   结果)}

有人知道为什么服务器返回404没找到?
注意:关键字只能是" ali,veli,kadir"或其他什么。

1 个答案:

答案 0 :(得分:0)

NotFound是WebClient对多种错误的回应。最常见的两种情况是

  • 糟糕的服务器证书(不应该是你的情况,Youtube有一个有效的证书)
  • 您的模拟器或设备中没有互联网连接。

我几乎可以肯定你的情况是第二个,检查你的互联网连接。