I am using the Google Custom Search API to search for images. My implementation is using Java, and this is how I build my search string:
URL url = new URL("https://ajax.googleapis.com/ajax/services/search/images?"
+ "v=1.0&q=barack%20obama&userip=INSERT-USER-IP");
How would I modify the URL to limit search results, for example, to: 2014-08-15
and 2014-09-31
?
before:
One thing to note is that thebefore:
parameter is not inclusive, while thesort=date:r
is inclusive. – Crosby