Microsoft Botframework:与Bot频道直接对话

时间:2018-04-09 16:55:13

标签: c# botframework

我一直在努力将来自ac#console应用程序的直接消息发送到我托管在Azure中的skype bot,我一直收到错误:操作返回了无效的状态代码' Unauthorized&#39 ;,但是我提供了以下凭据:

Web.Config文件

  <appSettings>
    <add key="BotId" value="myBotId" />
    <add key="MicrosoftAppId" value="AppId" />
    <add key="MicrosoftAppPassword" value="Password" />
  </appSettings>

我确定了以上内容!所以不可能。

我的控制台应用程序代码:

var userAccount = new ChannelAccount(name: "User", id: "default-user");
var botAccount = new ChannelAccount(name: "Bot", id: "id");
var connector = new ConnectorClient(new Uri("https://f2d92691.ngrok.io"));

IMessageActivity message = Activity.CreateMessageActivity();

if (!string.IsNullOrEmpty(conversationId) && !string.IsNullOrEmpty(channelId))
{
    message.ChannelId = channelId;
}
else
{
    conversationId = (await connector.Conversations.CreateDirectConversationAsync(botAccount, userAccount)).Id;
}

message.From = botAccount;
message.Recipient = userAccount;
message.Conversation = new ConversationAccount(id: conversationId);
message.Text = messageText;
message.Locale = "en-Us";

await connector.Conversations.SendToConversationAsync((Activity)message);

这是我以前使用bot模拟器的代码。

以前是否有人这样做过,请注意我可以使用此示例发送消息:https://docs.microsoft.com/en-us/azure/bot-service/dotnet/bot-builder-dotnet-proactive-messages

但这是机器人本身使用的代码,我不想在机器人之外使用它。

由于

1 个答案:

答案 0 :(得分:2)

找到解决方案,只需添加此行,如果您使用代码在机器人外部发送消息。 MicrosoftAppCredentials.TrustServiceUrl(URL);