Forum Discussion
tleamon
8 years agoNew Member
Error streaming dataset flow with power BI
Hi Everyone, I am trying out the real time streaming dataset but it doesnt seem to be working wrong. It appears that I am formatting the data wrong as it is returning: {
"error": {
...
- 8 years ago
tleamon
8 years agoNew Member
Hello v-jiascu-msft,
Thank you very much for the reply and I did not notice that I had a timestamp labeled as the wrong data type. Sadly this didnt fix my issue. I am actually just using Postman right now to send posts to the url. I have attatched a screenshot of the data I am trying to send as well as the way I have my realtime data item set up.
v-jiascu-msft
8 years agoMicrosoft Employee
Hi tleamon,
The error message shows the data is a invalid json data. Please try these two format below.
{
"timestamp" : "2016-09-10T01:26:45.030Z",
"temperature" : 98.6,
"humidity" : 98.6
}
"{
"timestamp" : "2016-09-10T01:26:45.030Z",
"temperature" : 98.6,
"humidity" : 98.6
}"
Best Regards,
Dale