c# - Use OWIN authentication in SignalR -



c# - Use OWIN authentication in SignalR -

im new in using owin , signalr. have application using owin auth , want add together chat functionality using signalr. problem getting empty values in context.user.identity.

here's startup class

public void configuration(iappbuilder app) { httpconfiguration config = new httpconfiguration(); configureoauth(app); webapiconfig.register(config); app.usecors(microsoft.owin.cors.corsoptions.allowall); app.usewebapi(config); app.mapsignalr(); }

c# asp.net signalr owin

Comments

Popular posts from this blog

Using Android Volley to post an array to PHP -

python - How to add an model instance to a django queryset? -

angularjs - No 'Access-Control-Allow-Origin' error from local domain to public API -