Van*_*yan 5 signalr asp.net-core
客户端如何授权向用户发送消息?
从控制器发送
hubContext.Clients.User(User.Identity.Name).SendAsync();
Run Code Online (Sandbox Code Playgroud)
目前消息未发送。我需要在 OnConnection() 中添加一些东西吗?还是 SignalR 有现成的 ConnectionId 和 User.Identity.Name 映射机制?
这就是我目前实施它的方式,但在我看来不太正确。问题是如何制作相同的标准工具?
public static class HubConnections
{
public static Dictionary<string, List<string>> Users = new Dictionary<string, List<string>>();
public static List<string> GetUserId(string name)
{
return Users[name];
}
}
public class GameHub : Hub
{
public override Task OnConnectedAsync()
{
if (Context.User.Identity.IsAuthenticated
&& HubConnections.Users.ContainsKey(Context.User.Identity.Name)
&& !HubConnections.Users[Context.User.Identity.Name].Contains(Context.ConnectionId))
HubConnections.Users[Context.User.Identity.Name].Add(Context.ConnectionId);
else
HubConnections.Users.Add(Context.User.Identity.Name, new List<string> { Context.ConnectionId });
return base.OnConnectedAsync();
}
public override Task OnDisconnectedAsync(Exception exception)
{
if (Context.User.Identity.IsAuthenticated) HubConnections.Users.Remove(Context.User.Identity.Name);
return base.OnDisconnectedAsync(exception);
}
}
Run Code Online (Sandbox Code Playgroud)
正如我上面所说,我就这样尝试过,但它不起作用
hubContext.Clients.User(User.Identity.Name).SendAsync();
Run Code Online (Sandbox Code Playgroud)
小智 3
正在追寻同样的问题并从https://github.com/aspnet/SignalR/issues/2498获得解决方案
需要设置 NameIdentifier 声明。这是由 SignalR 检查的,而不是我假设的名称声明。我设置了 NameIdentifier 声明,并让非集线器类向特定用户发送通知。
归档时间: |
|
查看次数: |
3959 次 |
最近记录: |