我正在使用C#wrapper Google-API-for-dot-net来查询自定义搜索引擎,以便仅返回该网站的结果。问题是结果与CSE页面和API结果不同。
这是我正在使用的代码:
GwebSearchClient Client = new GwebSearchClient(@"http://www.eatout.co.za/");
string keyword = Query;
int count = 1000;
string customSearchId = "XXXXXXXXX";
string customSearchReference = null;
string language = "English";
string safeLevel = "Off";
string duplicateFilter = "On";
string country = "za";
var Results = Client.Search(keyword, count, customSearchId, customSearchReference, safeLevel, language, duplicateFilter, country);
答案 0 :(得分:1)
Google对分页时使用的CurrentPageIndex使用零索引。我一直在看第2页。