✅ SignalR authentication not working

Hi, im making a chat application with .net core and signalr. I use token auth. when im already authenticated but the message does not show it in this.

[Authorize]
public override async Task OnConnectedAsync()
{
await Clients.All.SendAsync("ReceiveSystemMessage",
$"{Context.UserIdentifier} joined.");
await base.OnConnectedAsync();
}

[Authorize]
public override async Task OnDisconnectedAsync(Exception exception)
{
await base.OnDisconnectedAsync(exception);
}

connection starts and only shows joined.
Please help
Was this page helpful?