如何在 Google 中输入搜索字符串,然后查看它得到了多少结果?我试过这样做:
string uri = "http://google.com/search?q=" + stringsToSearchFor[0];
string response = wc.UploadString (uri, stringsToSearchFor[0]);
Console.WriteLine ("Response: " + response);
Console.ReadKey (true);
我认为字符串响应会获取相关信息,例如有多少结果,但是当我运行程序时,我收到此错误消息:远程服务器返回错误:(503)服务器不可用。