Display Pictures on Web App using Google Apps Script

  Рет қаралды 27,714

Code With Curt

Code With Curt

Күн бұрын

Пікірлер: 41
@stefanorossi3632
@stefanorossi3632 Жыл бұрын
hi, even if I'm Italian and not an expert in the English language, I congratulate you for your very comprehensive lessons, thank you with all my heart .
@ademoor
@ademoor 2 жыл бұрын
Thanks, Curt, very useful explanation of a core piece of GAS-based website infrastructure.
@CodeWithCurt
@CodeWithCurt 4 жыл бұрын
Google Apps Script Code used in Video Below: function doGet(e) { var htmlOutput = HtmlService.createTemplateFromFile('DisplayFile'); var pictures = getPictures(); htmlOutput.pictures = pictures; return htmlOutput.evaluate(); } function getPictures() { var destination_id = ''; // ID OF GOOGLE DRIVE DIRECTORY; var destination = DriveApp.getFolderById(destination_id); var files = destination.getFiles(); var file_array = []; while (files.hasNext()) { var file = files.next(); file_array.push(file.getId()); } return file_array; }
@Albie55292
@Albie55292 11 ай бұрын
now that method doesn't work, maybe Google changed the policy, my script that displays images from Google Drive, the images don't appear
@derykp9877
@derykp9877 11 ай бұрын
same issue here and no support or mention of the change.
@Albie55292
@Albie55292 11 ай бұрын
but if opened in new tab, the image from that url displayed well
@mpratt
@mpratt 11 ай бұрын
@@Albie55292 I noticed that too
@ceddtbh
@ceddtbh 10 ай бұрын
how did you solve it? i managed to fix it by using the thumbnail?id=xxx url
@thatsmeee111
@thatsmeee111 8 ай бұрын
​@@ceddtbh Hiw please!
@CodeWithCurt
@CodeWithCurt 4 жыл бұрын
HTML File Code used in Video Below: Display Pictures
@nurasian7355
@nurasian7355 4 жыл бұрын
Thank you.
@tanveerhussain3881
@tanveerhussain3881 4 жыл бұрын
thank you. bcoz I am waiting from 1 year for view image in google script bcoz I want to make ecommerc site in google script
@febielyngasapo9775
@febielyngasapo9775 3 жыл бұрын
Hi! Is it possible to display the image file name as well?
@carlobarbadillo2523
@carlobarbadillo2523 3 жыл бұрын
Hey wonder if you can shows how to do it with just a single Picture to display. More like a banner or something. Thanks
@nurasian7355
@nurasian7355 4 жыл бұрын
Wow, thank you. If put link in Google Sheet and public same video, can it.
@christellembuyi7823
@christellembuyi7823 3 жыл бұрын
Hello Code with Curt, How do you insert the background image on the google sheet spreadsheet?
@jayasri-ft8040
@jayasri-ft8040 4 жыл бұрын
Wow. Excellent bro. Superb. Thanks
@halogorty5241
@halogorty5241 3 жыл бұрын
Thanks sir , I used your method to export pdf file from Google drive and use theme in html in table when user click in it , it goes to that file . But I have a question How can I print the name of each file in table please??
@ChizmarFarms
@ChizmarFarms 2 жыл бұрын
Thanks for making this video! It has been the only one that I can find on how to display an image in a Google Apps Script HTML web page. I followed your instructions and am successful displaying images using a computer, but the images do not display on mobile devices. Have you seen this issue and if yes, do you know a fix? Thanks for all of your videos!
@ovaismajid8989
@ovaismajid8989 4 жыл бұрын
Hey curt Can u please tell me how to do a section based answer thing like that in google forms. Please provide the script
@mayursawant7992
@mayursawant7992 2 жыл бұрын
Sir...How to create responsive video playlist gallery in login and logout using google webapp script...
@chandankumarmishralastmile5761
@chandankumarmishralastmile5761 2 жыл бұрын
Hi Thanks Can we add Video and Images and Voice Recorde with discription if yes kinldy Guide
@carlosmolina3144
@carlosmolina3144 3 жыл бұрын
Gracias, me funciono perfecto!!! thx!
@spector456
@spector456 3 жыл бұрын
how to make a nav bar with a logo in google app script?
@smajekulo3953
@smajekulo3953 2 жыл бұрын
thank you for the tutorial sir, please help, how to display one page of 6 images, and the next image press the next button
@asambleacristiana6552
@asambleacristiana6552 3 жыл бұрын
im sorry, i can see the code, where is it?
@ksnarasimhan1955
@ksnarasimhan1955 Жыл бұрын
Its nice. But the url is not displaying in mobile device. Can you give a solution.
@douglasteixeiradeabreu
@douglasteixeiradeabreu 3 жыл бұрын
How to display name file?
@musavirr
@musavirr 3 жыл бұрын
Thanks 👍
@cesardragonst
@cesardragonst 2 жыл бұрын
hola, en el PC me sirvió para ver las imágenes pero al ejecutarlo desde mi smartphone no se muestran las imágenes.. +_me puedes ayudar?
@ОлександрГалущенко-к9ш
@ОлександрГалущенко-к9ш Жыл бұрын
Hello, I have the same problem. on PC this code works fine but iPhone does not display images from google drive.
@jonhlouieoledan5880
@jonhlouieoledan5880 4 жыл бұрын
Hi Sir, I tried to use the code but it has an error "ReferenceError: pictures is not defined eval eval doGet @ Code.gs:2" How to fix this sir?
@CodeWithCurt
@CodeWithCurt 4 жыл бұрын
The error is showing up because it can't find the picture id's from the getPictures() function. Make sure the id is set right for the directory in which you are pulling the pictures.
@PRINCESSJANESOCITO
@PRINCESSJANESOCITO Жыл бұрын
Can you give us a tutorial about how to set background pictures from Google Drive on a Web App using Google Apps Script?
@sidduchinmay4599
@sidduchinmay4599 3 жыл бұрын
hey curt how to display image by giving password
@stefanorossi3632
@stefanorossi3632 Жыл бұрын
hello, I like these tutorials so much that, if you authorize me, I would like to take a cue from them to make them in Italian.
@sureshatsasi
@sureshatsasi 3 жыл бұрын
Display with google sheet image url into link file used
@BapaqCuChannel
@BapaqCuChannel Жыл бұрын
Hai crut, how to make automatic play music song on web app?
Using doGet(e) Function to start Web App on Google Apps Script
15:48
Code With Curt
Рет қаралды 27 М.
Web App - Remove "This application was created by another user, not by Google."  -  Part 11
10:44
Learn Google Sheets & Excel Spreadsheets
Рет қаралды 63 М.
coco在求救? #小丑 #天使 #shorts
00:29
好人小丑
Рет қаралды 120 МЛН
人是不能做到吗?#火影忍者 #家人  #佐助
00:20
火影忍者一家
Рет қаралды 20 МЛН
Apps Script Tutorial on doGet ( )
9:44
Allen App Tools
Рет қаралды 150
File Loader Web App to Google Drive on Google Sheets
20:41
Code With Curt
Рет қаралды 26 М.
Google Apps Script - Google Drive Tutorial, Files, Folders, Copy Files, DriveApp, Iterator - Part 15
29:31
Learn Google Sheets & Excel Spreadsheets
Рет қаралды 133 М.
Invoicing Web App using Google Sheet and Apps Script
8:41
TechLever
Рет қаралды 10 М.
This is How I Scrape 99% of Sites
18:27
John Watson Rooney
Рет қаралды 230 М.
I Used AI To Build This $900K/mo App In A Day
21:48
Astro K Joseph
Рет қаралды 495 М.
Display images in google sheet cell  by using file urls from google drive  -2021
16:41
How to Host a Website for FREE on Google Drive | 🆓 Web Hosting
9:49
Website Learners
Рет қаралды 334 М.
Develop Google Apps Script Locally in VSCode using CLASP
25:56
Get __it Done!
Рет қаралды 25 М.
coco在求救? #小丑 #天使 #shorts
00:29
好人小丑
Рет қаралды 120 МЛН