我正在使用 .Net 的 Google API http://code.google.com/p/google-api-for-dotnet/ 并且无论我要求 Google 获得多少结果,都不会返回超过 64 个。
这是我的代码片段:
GwebSearchClient client = new GwebSearchClient("xyz");
IList<IWebResult> results = client.Search(this.SearchText.Text, 100);
我预计会得到 100 个结果,但无论使用什么搜索词,都不会超过 64 个。
有任何想法吗?