How to connect my python bot to microsoft bot connector
问题 I want to write a python bot and I know if it is possible to connect my bot to microsoft bot connector ? 回答1: Yes it's possible. Please checkout Microsoft bot built on Django (python web framework) for implementation. Here below is a python code to reply back to Microsoft bot connector import requests app_client_id = `<Microsoft App ID>` app_client_secret = `<Microsoft App Secret>` def sendMessage(serviceUrl,channelId,replyToId,fromData, recipientData,message,messageType,conversation): url=