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
Post a Comment