Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Attachment binary data

Asaf Maitlis
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
August 24, 2017

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 ? 

 

 

0 answers

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events