This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://stenevang.wordpress.com/2013/02/22/google-search-url-request-parameters/ | |
// http://jwebnet.net/advancedgooglesearch.html#advDatePeriod | |
// http://stackoverflow.com/questions/9452169/google-custom-search-refinement-for-newest-results | |
// &tbs=rltm:1 [real time results] | |
// &tbs=qdr:s [past second] | |
// &tbs=qdr:n [past minute] | |
// &tbs=qdr:h [past hour] | |
// &tbs=qdr:d [past 24 hours (day)] | |
// &tbs=qdr:w [past week] | |
// &tbs=qdr:m [past month] | |
// &tbs=qdr:y [past year] | |
// Any time: tbs=qdr:a | |
// Last second: tbs=qdr:s (Read more about this “real time search” on Lifehacker) | |
// Last minute: tbs=qdr:n | |
// Last 10 minutes: tbs=qdr:n10 (and so on for any number of minutes) | |
// Last hour: tbs=qdr:h | |
// Last 12 hours: tbs=qdr:h10 (and so on for any number of hours) | |
// Last day: tbs=qdr:d | |
// Last week: tbs=qdr:w | |
// Last month: tbs=qdr:m | |
// Last year: tbs=qdr:y | |
// A specific time range, for example from March 2 1984 to June 5 1987: tbs=cdr:1,cd_min:3/2/1984,cd_max:6/5/1987 | |
// Sort by date: tbs=sbd:1 | |
// Sort by relevance: tbs=sbd:0 |
No comments:
Post a Comment