nodejs:尝试与 SignalR 对话时出现未知错误 api

nodejs : unknown error when trying to talk to SignalR api

我正在尝试使用这个包

https://www.npmjs.com/package/signalr-client

与用 c# 编写的 SignalR api 交谈,但我在尝试创建客户端时遇到一些错误

这是我的代码

var signalR = require('signalr-client');

try
{
    var client  = new signalR.client(
        "https://firouzex.exphoenixtrade.com/realtime",
        ['GetNewAPIToken' , 'OmsClientHub']
    );


}
catch (e) {
        console.log('error');
}

但是我收到这个错误

Error Message:  Protocol Error
Exception:  undefined
Error Data:  Url {
  protocol: 'https:',
  slashes: true,
  auth: null,
  host: 'firouzex.exphoenixtrade.com',
  port: null,
  hostname: 'firouzex.exphoenixtrade.com',
  hash: null,
  search:
   '?connectionData=%5B%7B%22name%22%3A%22getnewapitoken%22%7D%2C%7B%22name%22%3A%22omsclienthub%22%7D%5D&clientProtocol=1.5',
  query:
   [Object: null prototype] {
     connectionData: '[{"name":"getnewapitoken"},{"name":"omsclienthub"}]',
     clientProtocol: '1.5' },
  pathname: '/realtime/negotiate',
  path:
   '/realtime/negotiate?connectionData=%5B%7B%22name%22%3A%22getnewapitoken%22%7D%2C%7B%22name%22%3A%22omsclienthub%22%7D%5D&clientProtocol=1.5',
  href:
   'https://firouzex.exphoenixtrade.com/realtime/negotiate?connectionData=%5B%7B%22name%22%3A%22getnewapitoken%22%7D%2C%7B%22name%22%3A%22omsclienthub%22%7D%5D&clientProtocol=1.5',
  headers: {} }

已知问题"client.Proxy settings currently only work for HTTP and not HTTPS"。还有一个 https https://www.npmjs.com/package/signalrjs. Copied it from npm package for signalr client not getting connected

的包