I am trying to set up an api for a google image search, but I keep running into 403 errors, has anyone successfully set this up yet, who could give me some pointers?
Whenever I am troubleshooting APIs, sometimes I use postman and make sure my connections are working there first. and once I know I have my syntax and security setup correct then I will test it in wappler.
Are you using the Custom Search API? I believe the actual Google image search API was deprecated some time ago.
FWIW, I’m just use a URL for google image searches.
https://www.google.com/search?q=’ + document.getElementById(‘inp_title’).value + ’ ’ + document.getElementById(‘inp_city’).value + '&tbm=isch&tbs=isz%3Al&hl=en&biw=2543&bih=1336
Which would produce something like https://www.google.com/search?q=The%20Gruyère%20Baths%20Val-de-Charmey&tbm=isch&tbs=isz%3Al&hl=en&biw=2543&bih=1336%20
1 Like