Why do I get "Method not allowed"

I am trying to use Microsoft Bot Framework with a simple Q / A script. I followed the steps on the Getting started with the connector page. However, after registering my bot and downloading it, I get a Method Not Allowed error when I test it on the bot platform site. I can run the bot in the emulator just fine. I understand that this is 405 error, but I do not understand what challenge she is trying to make. Somebody knows?

Method Not Allowed Error pic

+6
source share
1 answer

You need to add / api / messages at the end of the configuration message endpoint .

Like:

your_bots_hostname / api / messages

enter image description here

+10
source

All Articles