如何向Google輸入搜索字符串,然後查看它得到的結果數量?我試着這樣做:搜索字符串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)服務器不可用。
爲什麼要那樣做POST和GET請求? – mellamokb