Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Cant View Images via API

Franco Glovasa
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!
April 3, 2023

Hi!

 

I was able to view the task on jira through API using this endpoint however cant view the attached image.

image1.png

When I loop use the function below to get the data from the ID, I get this error:image2.png

got the code from this documentation:

Jira Api Documentation to Get Attachment 

 

This is my code.

public static Dictionary<string, object> GetImageDetails(string attachmentId, WebHeaderCollection headers, string yourDomain)
{
// Set the URL
string url = $"https://{yourDomain}.atlassian.net/rest/api/3/attachment/{attachmentId}";

// Initiate the web request
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.Headers = headers;
request.Method = "GET";

try
{
// Get the response
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
string responseString = new StreamReader(response.GetResponseStream()).ReadToEnd();

// Deserialize the JSON response
Dictionary<string, object> responseDict = JsonConvert.DeserializeObject<Dictionary<string, object>>(responseString);

// Close the response and request streams
response.Close();
response.Dispose();
request = null;

return responseDict;
}
catch (WebException ex)
{
// Handle any exceptions that might occur
Console.WriteLine($"Error: {ex.Message}");
throw;
}

 

0 answers

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
FREE
TAGS
AUG Leaders

Atlassian Community Events