在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");
}