Hi,
Using Google AJAX Search API, is there a way to add a date restriction
to limit the search results to, lets say, the pages that changed over
the last 24 hours?
Using the standard CSE features you can add the parameter "as_qdr" to
your form:
<form action="
http://users.telenet.be/philipverschueren"
id="searchbox_009708136784597396674:rep2skbnpvg">
<table>
<tr>
<td>
<input type="hidden" name="cx" value="xxxxx" />
<input type="hidden" name="cof" value="FORID:11" />
<input type="hidden" name="as_qdr" value="d" />
<input type="text" name="q" size="25" />
</td>
<td>
<input type="submit" name="sa" value="Search" />
</td>
</tr>
</table>
</form>
Setting searcher.setQueryAddition("as_qdr=d") gives not the desired
results in Google AJAX API. Is there another way to achieve this date
restriction?