Last active
August 29, 2015 14:16
-
-
Save pysco68/345fe0fbfc1c28c2459d to your computer and use it in GitHub Desktop.
SignalR Hawk authentication
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install-Package Pysco68.SignalR.HawkClient |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// setup hawk authentication | |
var options = new Options() | |
{ | |
/* ... */ | |
CredentialsCallback = (id) => /* routine to check credentials */ | |
}; | |
app.UseHawkAuthentication(new HawkAuthenticationOptions(options)); | |
// map SignalR hubs | |
app.MapSignalR(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var hubConnection = new HubConnection(url); | |
/* ...Hub registration here... */ | |
var credential = = new Credential | |
{ | |
Id = "id", | |
Key = key, | |
Algorithm = SupportedAlgorithms.SHA256, | |
User = "user" | |
}; | |
var httpClient = new HawkHttpClient(credential); | |
await hubConnection.Start(httpClient); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment