BOT框架示例12在ServiceNow上的实现

时间:2019-07-01 11:19:33

标签: botframework web-chat

我正在使用sample12在ServiceNow页面上创建最小化的网络聊天。使用示例12并进行构建,我能够将其导入ServiceNow并使其出现在新UI页面上。但是有两个问题:1)CORS 2)尚未进行对BOT的身份验证。enter image description here

此外,我该如何处理身份验证?

我使用以下process来托管页面

有什么想法吗? 这种嵌入(如下所示)对我们有用。但是我们需要在servicenow上进行最小化的网络聊天

ready

1 个答案:

答案 0 :(得分:0)

我现在通过托管一个返回令牌的应用程序服务来完成这项工作。该应用现在可以访问BOT。

using System;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading.Tasks;
using System.Web.Mvc;
using Newtonsoft.Json.Linq;
using WebApplication1.Controllers;

namespace WebApplication1.Controllers
{
    [Route("[controller]/[action]")]
    [ApiController]
    public class DirectLineController : Controller
    {
        //[HttpPost]
        //public async Task<string> PartialToken()
        //{
        //    string data = await GetToken(false);
        //    return data;
        //}


        //[HttpGet]
        //public async Task<string> Token()
        //{
        //    string data = await GetToken(true);
        //    return data;
        //}
        [HttpPost]
        public async Task<string> GetToken()
        {
            string data = String.Empty;
            using (HttpClient client = new HttpClient())
            {
                client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer",
                    "Hir-4RmrbUY.cwA.aqo.ojSLtakhThiswontworkdonteventrym64oi_2LE_sB4C5BizQwaCg__q1M");
                var response = await client.PostAsync("https://directline.botframework.com/v3/directline/tokens/generate", null);
                if (response.IsSuccessStatusCode)
                {
                    var raw = await response.Content.ReadAsStringAsync();
                    if (true)
                    {
                        data = raw;
                    }
                    else
                    {
                        data = JObject.Parse(raw)["token"].Value<string>();
                    }
                }
            }

            return data;
        }

        //protected override void ExecuteCore()
        //{
        //    throw new NotImplementedException();
        //}
    }
}