iT邦幫忙

鐵人檔案

2018 iT 邦幫忙鐵人賽
回列表
AI & Machine Learning

Microsoft Bot Framework 30天上手 + 自幹 Line Builder 串接 + Line Bot Demo 系列

擷取 Bot Framework Document 的重點作介紹,
因為Line為國人所熟悉且愛用的通訊APP,
故自幹 LineBuilder補足 devbotframework 未提供的這個部份,
並會加上幾個Line bot demo做為範例。

鐵人鍊成 | 共 30 篇文章 | 14 人訂閱 訂閱系列文 RSS系列文 團隊線上讀書會III
DAY 11

Messages

前言:目前example 的建議方式 let m = new builder.Message(s) .text(“hello world”) .suggest...

2017-12-29 ‧ 由 Wolke 分享
DAY 12

Respond to user input

回應使用者的訴求 Handle global action全域呼叫 // The dialog stack is cleared and this dial...

2017-12-30 ‧ 由 Wolke 分享
DAY 13

Replace dialogs

Create custom prompts to validate input驗證格式的範例 bot.dialog('phonePrompt', [...

2017-12-31 ‧ 由 Wolke 分享
DAY 14

Action

https://docs.microsoft.com/en-us/bot-framework/nodejs/bot-builder-nodejs-dialog-...

2018-01-01 ‧ 由 Wolke 分享
DAY 15

Send proactive messages

去年沒這個,實體主動傳訊給特定使用者。https://docs.microsoft.com/en-us/bot-framework/nodejs/bot-bui...

2018-01-02 ‧ 由 Wolke 分享
DAY 16

Add rich card attachments to messages

https://docs.microsoft.com/en-us/bot-framework/nodejs/bot-builder-nodejs-send-ri...

2018-01-03 ‧ 由 Wolke 分享
DAY 17

Add suggested actions to messages

也是去年沒有的,範例裡有選項的部份,都改成這個,可是很多無法實現好!line 要實現這個,得作很多容錯。 var msg = new builder.Mess...

2018-01-04 ‧ 由 Wolke 分享
DAY 18

Intercept messages

如果有掛  https://www.getbotimize.com/ 這一類的分析套件,就可以將其掛在這裡了。 bot.use({ receive:...

2018-01-05 ‧ 由 Wolke 分享
DAY 19

Manage state data 補充 mongo storage

https://docs.microsoft.com/en-us/bot-framework/nodejs/bot-builder-nodejs-state v...

2018-01-06 ‧ 由 Wolke 分享
DAY 20

Handle user and conversation events

https://docs.microsoft.com/en-us/bot-framework/nodejs/bot-builder-nodejs-handle-...

2018-01-07 ‧ 由 Wolke 分享