我想用bot框架创建一个对话框。我的步骤:
使用Direct Line API创建新的对话(无问题)(Clientside)
在Bot框架(Serverside)中触发以下Dialog:
bot.dialog('*:notification', [
function (session, args) {
builder.Prompts.text(session, args)
},
function (session, results) {
logger.info('Results', results)
}])
我想发送回复消息(Clientside)
method:'post',
url:'conversations/' + conversationId + '/activities',
headers:{
'Authorization': 'Bearer' + token
}
body:{
replyToId: replyToId,
type:'message',
from: {
id:'myId'
},
text: 'Some simple text',
textFormat: 'plain'
}
令牌:我使用我在创建对话时收到的那个
replyToId:活动对象
中的那个实际结果:
预期结果: