curl -H 'Content-Type: application/json; charset=utf-8' -X POST https://www.mytaglist.com/ethLogShared.asmx/GetLatestTemperatureRawDataByUUID -d '{"uuid":"0f32cb87-eb86-4a60-9e66-e0cfd661cba1"}'for some tag somewhere, based on the API docs.
But when I try to find my own tag's temperature it doesn't work:
curl -H 'Content-Type: application/json; charset=utf-8' -X POST https://www.mytaglist.com/ethLogShared.asmx/GetLateD -d '{"uuid":"4a2c01c3-e71d-435a-a1e0-4521fe90f306"}'Of course I have to allow the tag's public access, which I tried to do with the web app using the "share" button, which shares URLS such as https://my.wirelesstag.net/eth/tempStats.html?4a2c01c3-e71d-435a-a1e0-4521fe90f306&Tag%200&C . So, the tag is shared publicly in an http page. But the CURL POST still didn't work, so I tried to allow it with the API:
curl -H 'Content-Type: application/json; charset=utf-8' -H 'Authorization: Bearer [API ACCESS CODE]' -X POST https://www.mytaglist.com/ethLogs.asmx/EditSharePermissions -d '{"ids":["4a2c01c3-e71d-435a-a1e0-4521fe90f306"],"shareTemperature":["true"],"shareMotion":["true"]}'
but I still get the same error.
How do I allow my tag in the GetLatestTemperatureRawDataByUUID call?
Thanks,
—
John
curl -H 'Content-Type: application/json; charset=utf-8' -X POST https://www.mytaglist.com/ethLogShared.asmx/GetLatestTemperatureRawDataByUUID -d '{"uuid":"4a2c01c3-e71d-435a-a1e0-4521fe90f306"}'curl -H 'Content-Type: application/json;et=utf-8' -X POST https://my.wirelesstag.net/ethLogShared.asmx/GetLatestTemperatureRawDataByUUID -d '{"uuid":"4a2c01c3-e71d-435a-a1e0-4521fe90f306"}'