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

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

c++ - Serialize a class with a Qlist of custom classes as member (using QDataStream) -

Read video using VideoReader function in Matlab? -