我想通过我的 Hubconnection 构建器将标头传递给我的 signalrHub。换句话说,我如何使用打字稿来完成这个。
这是我拥有的 C# 实现:
connection = new HubConnectionBuilder()
.WithUrl("https://localhost:53251" + "/simpleHub", options =>
{
//set the header
options.Headers.Add("Device-ID", deviceID);
})
.Build();
我怎样才能对打字稿客户端做同样的事情?我尝试了一些我在网上找到的东西,最新的是:
this._hubConnection = new HubConnectionBuilder()
.withUrl("https://localhost:53251" + "/simpleHub?Device-ID=fc8dsc72f-1456-4bc2-b1ea-ac34b9c3559e", {
})
.configureLogging(LogLevel.Debug)
.withAutomaticReconnect()
.build();
但是以这种方式传递标头会导致服务器无法接收标头。请问有人有解决办法吗?请。