使用Google Web Search API搜索特定时间段

时间:2013-04-03 19:24:55

标签: api search web period

我正在使用谷歌网络搜索API搜索一些关键字,但我想只查看今天,昨天或具体日期的结果。

这是我正在使用的Js

<script src="https://www.google.com/jsapi" type="text/javascript"></script>
<script language="Javascript" type="text/javascript">
//<!

google.load("search", "1", {"language" : "bg-BG"});

function OnLoad() {
  // Create a search control
  var searchControl = new google.search.SearchControl();

  // Add in a full set of searchers

  searchControl.addSearcher(new google.search.WebSearch());
  searchControl.addSearcher(new google.search.NewsSearch());


  // tell the searcher to draw itself and tell it where to attach
  searchControl.draw(document.getElementById("searchcontrol"));
  google.search.Search.getBranding(document.getElementById("branding"));

  // execute an inital search
  searchControl.execute('"keyword" OR "keyword" OR "keyword" OR "keyword" OR "keyword" OR "keyword" OR "keyword" OR "keyword"');
}
google.setOnLoadCallback(OnLoad);



//]]>
</script>

例如,我想仅查看2013年4月2日的结果,我该怎么办?

感谢。

0 个答案:

没有答案