node.js - How to get conversation details in microsoft bot framework for skype? -
i'm able conversation details webchat using https://webchat.botframework.com/api/conversations/[conversationid]/messages
service url skype channel https://skype.botframework.com, dont find documentation getting conversation details
you can use directline rest api (see docs).
the direct line api simple rest api connecting directly single bot. api intended developers writing own client applications, web chat controls, mobile apps, or service-to-service applications talk bot. within direct line api, find: authentication mechanism using standard secret/token patterns ability send messages client bot via http post message ability receive messages polling http stable schema, if bot changes protocol version
you need enable directline channel bot on (see screenshot)
you don't have access each specific channel endpoint separately, can (with limitations) through directline api.
start new conversation
post /api/conversations
get messages in conversation
get /api/conversations/{conversationid}/messages
send message
post /api/conversations/{conversationid}/messages
the full details in docs linked above.
hope helps
Comments
Post a Comment