Summary
Keywords
Full Transcript
In this video, we will learn how to send data from the MIT app inventor app to google sheet using the app script. How to Read Data from Google Sheet -: https://youtu.be/nLKZR1L5JaA ...........................................................CODE............................................................................ function doGet(e) { var ss = SpreadsheetApp.openByUrl("https://docs.google.com/spreadsheets/d/1IYd-hSHZ7AIKLqNyfcU-S6DvDTYvwDXcAFaRVEcYNx0/edit#gid=0"); var sheet = ss.getSheetByName("Sheet1"); addUser(e,sheet); } function doPost(e) { var ss = SpreadsheetApp.openByUrl("https://docs.google.com/spreadsheets/d/1IYd-hSHZ7AIKLqNyfcU-S6DvDTYvwDXcAFaRVEcYNx0/edit#gid=0"); var sheet = ss.getSheetByName("Sheet1"); addUser(e,sheet); } function addUser(e,sheet) { var name = e.parameter.name ; var location = e.parameter.location ; sheet.appendRow([name,location]); } .........................................................END............................................................................ .................................................................................................... New Method to Send App data to Google Sheet -: https://youtu.be/PVM7h5QCnnM Follow Us On Social Media For More Updates -: Facebook -: facebook.com/TheCodingBus/ Website-: https://thecodingbus.info/ Instagram-: https://www.instagram.com/sourabhdubey007/ Reddit-: https://www.reddit.com/user/sourabhdubey007 Subscribe TCB -: http://bit.ly/TheCodingBus ........................................................................................................ use google spreadsheet as database android mit app inventor save data google sheets google sheets app google sheets 2018 google sheets link code mit app inventor send data to google spreadsheet from android app inventor web component app inventor examples taifun flashlight extension download admob extension for kodular app inventor tutorials use google spreadsheet as database android app inventor game the coding bus thunkable firebase database thunkable thunkable tutorial #TheCodingBus #TCB #unitedstates #us MIT App Inventor Premium Course (2025 Edition) – Learn with the Newest Features https://www.udemy.com/course/mitappinventorcourse/?referralCode=9723BA5EDD8E5C7A64BE
