I am using the latest version of the package and node v16.6.1
When I try to use search type, it works fine, but when I use image with any request it errors with [IMAGE NOT FOUND]
Code I used:
const gse = require('general-search-engine');
(async () => {
const results = await new gse.search()
.setType("image")
.setQuery("test")
.run();
console.log(results);
})().catch(console.error);
Output from console:
$ npm i general-search-engine
added 3 packages, and audited 4 packages in 2s
found 0 vulnerabilities
$ node index
[IMAGE NOT FOUND]
I am using the latest version of the package and node v16.6.1
When I try to use
searchtype, it works fine, but when I useimagewith any request it errors with[IMAGE NOT FOUND]Code I used:
Output from console: