We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 = response.Content.ReadAsStringAsync().Result; Console.WriteLine("Response {0} - Http Status Code {1}", message, response.StatusCode);
Additional: I change url to http://localhost:28290/api/HelloWorld and run Example.Web project,is work well.
The text was updated successfully, but these errors were encountered:
I catch the info: HawkNet Information: 0 : Normalized String: hawk.1.header 1403852658 1Vd0CA GET /api/HelloWorld localhost 8091
HawkNet Information: 0 : Normalized String: hawk.1.header 1403852658 1Vd0CA GET /api/HelloWorld localhost 80
I found the port is difference,why?
Sorry, something went wrong.
No branches or pull requests
var clientHandler = new HawkClientMessageHandler(new HttpClientHandler(), credential, "some-app-data");
var client = new HttpClient(clientHandler);
Additional:
I change url to http://localhost:28290/api/HelloWorld and run Example.Web project,is work well.
The text was updated successfully, but these errors were encountered: