Browser/Javascript SignalR Authorization
I recently started working with ASP.NET Core SignalR 1.0 and immediately ran into roadblock with authorization. If you need to add SignalR authorization via header such as the Authorization header, you’re going to also run into this roadblock. Specifically this is only an issue when running in the browser/javascript as it’s not supported. Headers I was unaware that browsers do not support additional headers such as Authorization. This was problematic for me as the authorization header sending a bearer token is the method of authorization used in the application I was adding SignalR hub to. So how are you supposed… Read More »Browser/Javascript SignalR Authorization