Adding headers when using httpClient.GetAsync

I’m implementing an API made by other colleagues with Apiary.io, in a Windows Store app project. They show this example of a method I have to implement: var baseAddress = new Uri(“https://private-a8014-xxxxxx.apiary-mock.com/”); using (var httpClient = new HttpClient{ BaseAddress = baseAddress }) { using (var response = await httpClient.GetAsync(“user/list{?organizationId}”)) { string responseData = await response.Content.ReadAsStringAsync(); … Read more