我正在尝试使用signalr 2中指定的新用户ID提供程序向特定用户发送消息。当我调用Clients.All方法时,我看到这个工作,因为我的javascript代码从服务器调用,而ui为我的测试用例产生一些预期的文本。但是,当我切换到Clients.User时,永远不会从服务器调用客户端代码。我遵循了此示例中概述的代码:SignalR - Sending a message to a specific user using (IUserIdProvider) *NEW 2.0.0*。
NotificationHub.cs:
public class NotificationHub : Hub
{
[Authorize]
public void NotifyUser(string userId, int message)
{
Clients.User(userId).DispatchMessage(message);
}
public override Task OnConnected()
{
return base.OnConnected();
}
public override Task OnDisconnected(bool stopCalled)
{
return base.OnDisconnected(stopCalled);
}
public override Task OnReconnected()
{
return base.OnReconnected();
}
}
IUserIdProvider.cs:
public class UserIdProvider : IUserIdProvider
{
MemberService _memberService;
public UserIdProvider()
{
}
public string GetUserId(IRequest request)
{
long UserId = 0;
if (request.User != null && request.User.Identity != null &&
request.User.Identity.Name != null)
{
var currenUser = Task.Run(() => _memberService.FindByUserName(request.User.Identity.Name)).Result;
UserId = currenUser.UserId;
}
return UserId.ToString();
}
}
Startup.cs
HttpConfiguration config = GlobalConfiguration.Configuration;
config.Routes.MapHttpRoute(
"Default2",
"api/{controller}/{action}/{id}",
new { id = RouteParameter.Optional });
config.Routes.MapHttpRoute(
"DefaultApi2",
"api/{controller}/{id}",
new { id = RouteParameter.Optional });
app.Map("/signalr", map =>
{
map.UseCors(CorsOptions.AllowAll);
var idProvider = new UserIdProvider();
GlobalHost.DependencyResolver.Register(typeof(IUserIdProvider), () => idProvider);
map.UseOAuthBearerAuthentication(new OAuthBearerAuthenticationOptions()
{
Provider = new QueryStringOAuthBearerAuthenticationProvider()
});
var hubConfiguration = new HubConfiguration
{
};
map.RunSignalR(hubConfiguration);
});
app.MapSignalR();
QuerstringOAuthBearerAuthenticationProvider:
public class QueryStringOAuthBearerAuthenticationProvider
: OAuthBearerAuthenticationProvider
{
public override Task RequestToken(OAuthRequestTokenContext context)
{
if (context == null) throw new ArgumentNullException("context");
// try to find bearer token in a cookie
// (by default OAuthBearerAuthenticationHandler
// only checks Authorization header)
var tokenCookie = context.OwinContext.Request.Cookies["BearerToken"];
if (!string.IsNullOrEmpty(tokenCookie))
context.Token = tokenCookie;
return Task.FromResult<object>(null);
}
}
我是否需要使用IUserIdProvider通过OnConnected,OnDisconnected等将用户映射到连接,或者这是否会在幕后自动发生?我发布的代码中是否有人出错也可能是个问题?我在与我的web api休息服务相同的环境中运行signalr,不知道这是否有所作为并且使用web api正在使用的默认承载令牌设置。
答案 0 :(得分:0)
根据连接客户端的连接ID创建一个组,在onConnected事件中并广播到与连接的id匹配的组,如果客户端断开连接,当它们重新连接时,它会更容易只属于一个新的团体自己。除非您当然需要有经过身份验证的用户。