Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
kalindud
New Member

Streaming Dataset using the PUSH URL?

Hello all,
Im sorry this might sound very noob. Im new to Power BI.
Here's my problem.

 

Is it possible to send a data stream to the PUSH URL in streaming datasets without using any type of authentication.


I mean, I have seen in THIS VIDEO that you can send a data stream without authentication. Also THIS ARTICLE.

I have the following data stream sent using an ESP8266 Module.

   [
      {
       "Temperature" : 90,
       "Humidity" : 80
      }
   ]


If I send to the Push Url using HTTP POST method, should it work?
I created a streaming dataset with the above fields in power BI, and sent the data using the ESP module.

But power BI didn't show any data.

 

What did I do wrong? Please help.

 

Im using this Code:

 

const size_t bufferSize = JSON_ARRAY_SIZE(1) + JSON_OBJECT_SIZE(2);
DynamicJsonBuffer jsonBuffer(bufferSize);
JsonArray& root = jsonBuffer.createArray();
JsonObject& root_0 = root.createNestedObject();
root_0["Temperature"] = 90;
root_0["Humidity"] = 80;
root.printTo(Serial);

 

 

Your help is much appreciated.
Thank you all.

1 REPLY 1
v-caliao-msft
Microsoft Employee
Microsoft Employee

@kalindud,

 

Did you follow the steps in that video? The issue could realated to your datasource, can you show the data on other applicaion?

 

Regards,

Charlie Liao

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.