Получение HttpListenerContext.User как null при выполнении Post-запроса через axios

#vue.js #axios #chromium #httplistener

#vue.js #аксиос #хром #httplistener

Вопрос:

Я делаю запрос post из браузера Chromium, который работает на устройстве Android 4.4.4, структура запроса выглядит следующим образом

 var axiosConfig = {
        method: type,
        url: baseURL,
        data: {},
        contentType: "application/json",
        timeout: 3000,
        headers: {
          Authorization: "Basic "   btoa(apiUser   ":"   apiPassword),
        },
      };
      return new Promise(function (resolve, reject) {
        axios(axiosConfig)
          .then(function (response) {
            var result = response;
            resolve(result);
            console.log(response);
          })
          .catch(function (error) {
            console.log(error);
            reject(error);
          });
      });
 

У меня есть другое приложение, работающее на том же устройстве Android, на нем запущен HttpListener.

 httpListener = new HttpListener();
httpListener.Prefixes.Add($"http://*:8001/");
httpListener.AuthenticationSchemes = AuthenticationSchemes.None;
httpListener.IgnoreWriteExceptions = true;
httpListener.Start();
var context = await httpListener.GetContextAsync();
if (context.User.Identity.IsAuthenticated)
{
  if (context.User.Identity is HttpListenerBasicIdentity identity)
  {
     return (identity.Name.Equals(UserName) amp;amp; identity.Password.Equals(Password));
  }
}
 

Теперь, когда я делаю запрос, я получаю null в context.User

Кто-нибудь может, пожалуйста, объяснить, что может быть возможной причиной этого?