程式學習過程中發現,無法知道使用者尋問Line Bot 的問題,但我也不知如何把程式改成,當Line Bot收到搜尋問題時先把問題存在Google 試算表。
程式說明:
1.Line Bot收到問題 -->2.搜尋Google 試算表-->3.Line Bot回答搜尋結果
希望改成:
1.Line Bot收到問題 -->2.將問題存入Google 試算表-->3.搜尋Google 試算表
-->4.Line Bot回答搜尋結果
.........................................................
可以參考官方文件的範例
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheets()[0];
// Appends a new row with 3 columns to the bottom of the
// spreadsheet containing the values in the array
sheet.appendRow(["a man", "a plan", "panama"]);
我有看到程式中你已經有成功取到sheet
所以再來只要進行資料寫入即可
如上述範例
var sheet = spreadSheet.getSheetByName('工作表1');
sheet.appendRow(['a', 'b', 'c', 'd']); // 會在資料表最下面新增一排資料