我正在使用GoogleSearchAPI查找一些信息,因为我使用了下面提到的代码
GwebSearchClient client = new GwebSearchClient("test");
IList<IWebResult> results = client.Search("vampire diaries", 20);
foreach (IWebResult result in results)
{
Response.Write(String.Format("[{0}] {1} => {2} <br/><br/><br/>", result.Title, result.Content, result.Url));
}
但它会给我.com网址,是否有可能通过过滤器找出结果我的意思是我只需要.UK网址或.US网址。
我如何获得这类细节?
由于
答案 0 :(得分:0)
是的,您可以像
一样添加过滤器 IEnumerable<IWebResult> result = client.Search(keyword.Name.Trim(), 20, "", "", "", "English","", "uk");