How to avoid “Sorry, my bot code is having an issue” in Microsoft Bot Framework

前端 未结 3 871
我在风中等你
我在风中等你 2020-12-15 05:25

I have a bot that runs on Azure + Bot Framework + LUIS (via LuisDialog).

If the user happens to send two messages in a quick succession (before the bot has a chance

3条回答
  •  误落风尘
    2020-12-15 05:57

    When you get an 403 or 429, it could be "out of quota" or "Too many request" respectively, in the first case you must create a key again and asign to your LUIS App, the first-1000 endpoint queries are free and it will be refreshed every month, you must use it wisely or you have to use a Paid tier.

    For the second case you have also a limit for the request, see the Boundaries documentation

    Here you can find Microsoft documentation about this.

提交回复
热议问题