Bot Framework WebChat 控件无法使用令牌协议,如嵌入聊天控件文档中所述。这是我遇到问题的代码:
string webChatSecret = ConfigurationManager.AppSettings["WebChatSecret"];
var request = new HttpRequestMessage(HttpMethod.Post, "https://webchat.botframework.com/api/conversations");
request.Headers.Add("Authorization", "BOTCONNECTOR " + webChatSecret);
HttpResponseMessage response = await new HttpClient().SendAsync(request);
string responseJson = await response.Content.ReadAsStringAsync();
WebChatTokenResponse webChatResponse = JsonConvert.DeserializeObject<WebChatTokenResponse>(responseJson);
return $"<iframe width='400px' height='400px' src='https://webchat.botframework.com/embed/PigLatinBotJoeMayo?t={webChatResponse.Token}'></iframe>";
WebChatTokenResponse 是
public class WebChatTokenResponse
{
public string ConversationID { get; set; }
public string Token { get; set; }
}
当我调试并遇到断点时,我确实有一个 ConversationID 和一个令牌。没有异常被抛出。
如果我只使用秘密,就像这样(而不是上面的代码,一切正常:
string webChatSecret = ConfigurationManager.AppSettings["WebChatSecret"];
return $"<iframe width='400px' height='400px' src='https://webchat.botframework.com/embed/PigLatinBotJoeMayo?s={webChatSecret}'></iframe>";
以下是我使用 F12 工具看到的错误消息:
我看到 500 内部服务器错误
请求网址:https ://webchat.botframework.com/api/conversations
带有错误消息:
{ "message": "发生错误。" }
如果我输入“嗨”消息:
请求网址:https ://webchat.botframework.com/api/conversations/null/messages
我收到一条带有响应的 403 Forbidden 消息:
{ "message": "无效的令牌或秘密" }
更新
我在Using the Bot Framework Chat Control上写了一篇关于我是如何完成这项工作的博客。