im trying to get a content type image as a binary data ,
i provide authorization header for the http request and request the image
using (var client = new HttpClient())
{
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", "base64UserPass");
var response = client.GetAsync(@"https://myorg/download/attachments/12414/image2017-3-5%2014%3A45%3A51.png?version=1&modificationDate=1488719873000&api=v2");
response.Wait();
if (response.Result.IsSuccessStatusCode)
{
using (HttpContent content = response.Result.Content)
{
var res = response.Result.Content.ReadAsStringAsync();
res.Wait();
}
}
im getting empty content as a result , how can i download the binary data ?