Skip to content

Latest commit

 

History

History
88 lines (65 loc) · 4.72 KB

troubleshooting_channel_config.md

File metadata and controls

88 lines (65 loc) · 4.72 KB

Bot Configuration Troubleshooting

The first step in troubleshooting a bot is to test it in Web Chat. This will allow you to determine if the problem is specific to your bot (bot doesn't work in any channel) or to a particular channel (bot works in some channels but not others).

Test in Web Chat

In Azure Portal, click on the "Test in Web Chat" link for your bot, and type something in the text box:

Test In Web Chat

If the bot responds with the expected output, proceed to Bot Does Not Work in Web Chat. Otherwise, navigate to The Bot Works in Web Chat but not in Other Channels.

Bot Does Not Work in Web Chat

There could be a number of reasons why a bot doesn't work. Most likely, the bot application is down and cannot receive messages, or the bot receives the messages but fails to respond.

To see if the bot is running, click on the "Overview" link, copy the Messaging endpoint and paste it into your browser. If the endpoint returns an error "This site can't be reached" or "can't reach this page", that means that your bot is down and you need to redeploy it.

If the endpoint returns HTTP Error 405, that means the bot is reachable and the bot is able to respond to messages. You should investigate whether your bot times out or fails with an HTTP 5xx error.

The Bot Works in Web Chat but not in Other Channels

If the bot works as expected in Web Chat but fails in some other channel, possible reasons are:

Channel Configuration Issues

It's possible that channel configuration parameters have been set incorrectly or have changed externally. For example, a bot has configured the Facebook channel for a particular page and the page was later deleted. The simplest solution is remove the channel and redo the channel configuration anew.

The links below provide instructions for configuring the channel supported by the Bot Framework:

Channel-Specific Behavior

Implementation of some features differs by channel. For example, not all channels support Adaptive Cards. Most channels support Buttons, but they are rendered in a channel-specific way. If you see differences in how some message types work in different channels, consult the Channel Inspector.

Below are some additional links that can help with individual channels:

Channel Outage

Occasionally, some channels might have an interruption of service. Usually, such outages don't last long. However, if you suspect an outage, consult a channel web site or social media.

Another way to determine if a channel has an outage is to create a test bot (such as a simple Echo Bot) and add a channel. If the test bot works with some channels but not others, that would indicate that the problem is not in your production bot.