The solution from yuanliu works, but not for the full json file from https://forecast.solar/ The best way was to use regex field extractor, but... ...next step to get timecharts from this format wont work by regex {
"result": {
"watts": {
"2019-06-22 05:15:00": 17,
"2019-06-22 05:30:00": 22,
"2019-06-22 05:45:00": 27,
...
"2019-06-29 20:15:00": 14,
"2019-06-29 20:30:00": 11,
"2019-06-29 20:45:00": 7
},
"watt_hours": {
"2019-06-22 05:15:00": 0,
"2019-06-22 05:30:00": 6,
"2019-06-22 05:45:00": 12,
...
"2019-06-29 20:15:00": 2545,
"2019-06-29 20:30:00": 2548,
"2019-06-29 20:45:00": 2550
},
"watt_hours_day": {
"2019-06-22": 2626,
"2019-06-23": 2918,
"2019-06-24": 2526,
"2019-06-25": 2866,
"2019-06-26": 2892,
"2019-06-27": 1900,
"2019-06-28": 2199,
"2019-06-29": 2550
}
},
"message": {
"type": "success",
"code": 0,
"text": ""
}
}
... View more