i want to display my dht sensor data from thinger io api into my own website. what should i do, exactly what should i learn. i’m beginner and i don’t find tutorial yet for this issue.
i just have html code for where the data is displayed.
There are different ways to do this integration. If you want to show the data represented in a widget, you can create it in a dashboard and then share it and introduce the hole dashboard into your website using an “Iref”.
But if you only want to extract the raw data, for example, one that is stored in a data bucket, you have to do two steps:
when calling this api you will receive the hole row, so you will need to select the data you want to show with the specific key:
[{“ts”:1532878930886.0,“val”:{“batery”:3416.0,“humidity”:36.4385,“temperature”:27.8396}}]
A third option could be call directly to the device resource, as is explained in the second post of this conversation. Did you have problems with that?