Title1
Title2
Title3
Login
Link
Search
教學頻道
中信金融管理學院
點二下資訊社
新化社區大學
GAS+購物車開發
GAS專案
GAS+購物車開發
Google表單實戰電商購物車
GAS+LineBot開發
外帶內用管理
購物車管理
線上打卡系統管理
萬用表單5
LineBot 線上書籍
PHP專案
網站程式設計-PHP(10502)
網站程式設計-PHP
PHP SMARTY 樣板引擎
SMARTY樣板
課程教材
雲端工具入門
行動應用企劃人員養成班
萬用表單5
GAS+LineBot開發
研習
萬用表單5
鐵人賽-Google Apps Script整合運用
GAS+LineBot開發
樂齡3C學習不斷電
臺東專科學校
GAS 開發 LineBot 自動接單系統
德鍵
112行動應用企劃人員養成班
111網頁前端設計工程師培訓班
110網頁前端設計工程師培訓班
網頁前端設計工程師培訓班
old
網頁前端設計與開發運用培訓班
Javascript & JQUERY
免費釋出專案
萬用表單
自動資料查詢
台南社大
113-01-雲端工具入門
112-02-AI自動管理
112-01-用QRCODE打造自動化環境
110-01-用雲端打造自動化環境
用雲端打造自動化環境
Google雲端智慧王
讓雲端工具提昇工作效率
Google 速學工作術
台南市總圖
教你如何使用LINE Bot機器人增加工作效率
Google雲端工具基礎應用
Google雲端工具進階應用
工作自動化與行銷(台南社大)
全部教材
台南市人力發展中心
Google工具應用實務班
企業課程
鐳達實業有限公司
GAS研習-20200726
中正大學-GAS研習
將軍圖書館
Google雲端工具基礎應用
Google雲端工具進階應用
南方創客
GitHub 衍伸應用
Google 應用工作術
永康社大
用雲端打造自動化環境(110-春季班)
用雲端打造自動化環境
南關社大
電腦、手機生活應用
遠端桌面
公司業務
傳送檔案
adwcleaner
W10 更新
客戶網站
最近完工
深雋設計有限公司
新化社大校務系統
靚品科技有限公司
5C Precision Co., Ltd.
BALANCE 1
RWD網站
東北關廟麵
曼馱有限公司
永宸昕有限公司
昌美實業社
形象網站
勇信機械有限公司
GAS專案
聯絡我們&案件委託
所有書籍
「行動應用企劃人員養成班」目錄
MarkDown
5-1-1 另一種方式
1. 萬用產生器
2. Google Apps Script介紹
2-1 開發模版安裝&設定
3. Line Bot申請
3-1 Line Bot 設定
4. Line Bot 與 GAS 工作原理
5. 客服自動回覆
5-1 撈出所有客服資料
5-1-1 另一種方式
5-2 Line Bot 樣版
5-2-1 上課程式碼
5-2-2 錯誤訊息
5-3 完成作品
5-2-1 上課程式碼
行動應用企劃人員養成班 =========== ### 發送回覆訊息 1.
參考:
2. 格式化程式碼:
shift
+
alt
+
F
3. 架構: ```javascript /*============================================ Line Bot 回覆 ============================================*/ function lineReplyMessage(replyToken, replyMessage) { //-----------------------------------回傳訊息給line 並傳送給使用者 let url = 'https://api.line.me/v2/bot/message/reply'; try { UrlFetchApp.fetch(url, { 'headers': { 'Content-Type': 'application/json; charset=UTF-8', 'Authorization': 'Bearer ' + CHANNEL_ACCESS_TOKEN, }, 'method': 'post', 'payload': JSON.stringify({ 'replyToken': replyToken, 'messages': replyMessage }), }); } catch (e) { //---------------------------------- 記錄Line Bot 回覆 錯誤訊息 let formData = { sn: '', timestamp: '', type: 'Line Bot 回覆 錯誤訊息', code: e } insert_sheet_record(formData); //---------------------------------- 記錄Line Bot 回覆 錯誤訊息 end } //---------------------------------------回傳訊息給line 並傳送給使用者 end } ``` 4. 請比對 replayMessage 陣列 包 物件(最多5組) ``` [ { "type":"text", "text":"Hello, user" }, { "type":"text", "text":"May I help you?" } ] ``` ![](https://i.imgur.com/EzMNLUI.png) ### Line Bot 樣版 1. [
訊息類型
](https://developers.line.biz/en/docs/messaging-api/message-types/) 1.
[
文字
](https://developers.line.biz/en/reference/messaging-api/#text-message)
2.
[
圖片
](https://developers.line.biz/en/reference/messaging-api/#image-message)
```javascript { "type": "image", "originalContentUrl": "https://example.com/original.jpg",//實際圖片網址 "previewImageUrl": "https://example.com/preview.jpg"//縮圖網址 } ```
[
link to https://developers.line.biz/en/reference/messaging-api/#image-message \\
](https://developers.line.biz/en/reference/messaging-api/#image-message)
3.
[
flex
](https://developers.line.biz/en/docs/messaging-api/using-flex-messages/#sending-messages-with-the-messaging-api)
```javascript [ { "type": "flex", "altText": "This is a Flex Message", "contents": { "type": "bubble", "body": { "type": "box", "layout": "horizontal", "contents": [ { "type": "text", "text": "Hello," }, { "type": "text", "text": "World!" } ] } } } ] ```
[
link to https://developers.line.biz/en/docs/messaging-api/using-flex-messages/#sending-messages-with-the-messaging-api \\
](https://developers.line.biz/en/docs/messaging-api/using-flex-messages/#sending-messages-with-the-messaging-api)
2. [
flex樣版網站
](https://developers.line.biz/flex-simulator/) 3. 從Showcase,找一個輪播樣版(Local Search) #### Action 1.
uri
```javascript { "type": "button", "style": "primary", "color": "#905c44", "margin": "xxl", "action": { "type": "uri", "label": "action", "uri": "http://linecorp.com/" } } ```
2.
message
```javascript { "type": "button", "style": "primary", "color": "#905c44", "margin": "xxl", "action": { "type": "message", "label": "action", "text": "hello" } } ```
3.