CEFsharp无法正确加载URL C#

时间:2018-10-16 00:02:46

标签: c# cefsharp chromium-embedded

在winform解决方案中使用CEFsharp,并遇到一个奇怪的错误,尝试加载Google Trends url,它给我429错误,不知道为什么,当我将chrome / firefox用于同一个链接时,它可以完美地工作 这是代码段:

 GoogleTrendsForm NewGoogleTrendsForm = new GoogleTrendsForm("Google");
            NewGoogleTrendsForm.ShowDialog();

____________________________________________________________________

     public GoogleTrendsForm(string keyword)
        {
            InitializeComponent();
            InitializeChromium();

            //https://trends.google.com/trends/explore?q=Google&geo=US
            chromeBrowser.Load("https://trends.google.com/trends/explore?q=" + keyword + "&geo=US");

        }

0 个答案:

没有答案