Posts

Tugas Pertemuan 15 - Membuat Aplikasi dengan Google Apps Script

Image
Nama : Thariq Agfi Hermawan NRP : 5025211215 Membuat Aplikasi dengan Google Apps Script Link GitHub : thoriqagfi/pbkk-assignment-15 (github.com) Link Deploy : https://thoriqagfi.github.io/pbkk-assignment-15/ Tugas yang diberikan pada mata kuliah PBKK-A, yaitu membuat Aplikasi dengan Memanfaatkan Framework Google . Berikut merupakan dokumentasinya  Pertama, kita buat Google SpreadSheet Selanjutnya, kita buat Apps Script Selanjutnya, kita memasukkan script yang berisi fungsi untuk memasukkan data ke SpreadSheet const sheetName = 'Sheet1' const scriptProp = PropertiesService . getScriptProperties () function initialSetup () {    const activeSpreadsheet = SpreadsheetApp . getActiveSpreadsheet ()    scriptProp . setProperty ( 'key' , activeSpreadsheet . getId ()) } function doPost ( e ) {    const lock = LockService . getScriptLock ()    lock . tryLock ( 10000 )    try {      const doc = SpreadsheetApp ...