Hi,
I’m trying to develop an app to get the attachments for the beacons using the cloud API
I did this but the answer is not working.
var authValue = new AuthenticationHeaderValue("APP_NAME", "TOKEN");
HttpClient client = new HttpClient()
{
DefaultRequestHeaders = { Authorization = authValue }
};
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
var responseMsg = client.GetAsync("https://cloud.estimote.com/v3/attachments").Result;