File size: 199 Bytes
3d979b2
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
/**
 * Test for Google Drive client
 */
function test_Drive() {
  var image = UrlFetch.fetch("https://example.com/image.jpg").getBlob();
  var fileID = Drive.saveImage(image);
  Logger.log(fileID);
}