We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Anyone know how to configure Araa to work similarly to google and other engines in this matter?
Google supports qdr parameters: qdr:d → Last day qdr:w → Last week qdr:m → Last month qdr:y → Last year
app.get('/search', (req, res) => { const query = req.query.q; const timeFilter = req.query.time_filter; // e.g., 'qdr:m' for last month const searchUrl = https://www.google.com/search?q=${query}&tbs=${timeFilter || ''}; fetch(searchUrl) .then(response => response.text()) .then(data => res.send(data)); });
app.get('/search', (req, res) => { const query = req.query.q; const timeFilter = req.query.time_filter; // e.g., 'qdr:m' for last month const searchUrl =
; fetch(searchUrl) .then(response => response.text()) .then(data => res.send(data)); });
The text was updated successfully, but these errors were encountered:
Google search doesn't currently work on the main instance/repo. #173 fixes this, but until that's merged, there's no way.
There isn't currently a graphical or URL argument way of filtering the date, however, you can use Google Dorking to filter results by date.
Once #173 is merged, I'll make a PR to add a way of changing the date.
Sorry, something went wrong.
Too many other issues. I went to 4get search. It seems miles better out of the box.
Successfully merging a pull request may close this issue.
Anyone know how to configure Araa to work similarly to google and other engines in this matter?
Google supports qdr parameters:
qdr:d → Last day
qdr:w → Last week
qdr:m → Last month
qdr:y → Last year
app.get('/search', (req, res) => { const query = req.query.q; const timeFilter = req.query.time_filter; // e.g., 'qdr:m' for last month const searchUrl =
https://www.google.com/search?q=${query}&tbs=${timeFilter || ''}; fetch(searchUrl) .then(response => response.text()) .then(data => res.send(data)); });
The text was updated successfully, but these errors were encountered: