hawknet
hawknet copied to clipboard
Hawk protocol implementation for .NET
var clientHandler = new HawkClientMessageHandler(new HttpClientHandler(), credential, "some-app-data"); var client = new HttpClient(clientHandler); ``` var request = new HttpRequestMessage(HttpMethod.Get, "http://localhost:8091/api/HelloWorld"); request.Headers.Host = "localhost"; var response = client.SendAsync(request).Result; string message =...
I am having an issue where a post WebApi method is not returning a response to the consuming client. The client is another controller in the same solution/website (for testing...