The API requires a header that will contain the Authorization code. So this what I have so far:
var fullUrl = 'https://api.ecobee.com/1/thermostat?json=\{"selection":\{"includeAlerts":"true","selectionType":"registered","selectionMatch":"","includeEvents":"true","includeSettings":"true","includeRuntime":"true"\}\}' ;
var nestRequest = new XMLHttpRequest();
nestRequest.open("GET", fullUrl, true);
var temp: "AUTHORIZATION_CODE_GOES_HERE";
nestRequest.setRequestHeader("Authorization", "Bearer " + temp);
I was able to query with Curl and I know the token is correct. But when I try with XMLHttpRequest I am getting this error:
500:
code:1 message:"Authentication failed. Token is required."
And that leads me to think that something is wrong on setting up the HEADER ...
This is what is required on header:
HEADERS: Content-Type: application/json;charset=UTF-8 Authorization: Bearer Rc7JE8P7XUgSCPogLOx2VLMfITqQQrjg
Any ideas on what I am doing wrong?
This should be: