is it possible to pull images of the internet with Google app script? -


i wondering if possible use google app script search image using key word , pull image document or spreadsheet , if how. thanks

yes, can use urlfetchapp fetch image , store blob in drive.

var blob = urlfetchapp.fetch(image_url).getblob(); var file = driveapp.create(blob); 

Comments

Popular posts from this blog

jQuery Mobile app not scrolling in Firefox -

c++ - How to add Crypto++ library to Qt project -

php array slice every 2th rule -