We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hello!
I've created a dashboard and a streaming dataset on https://app.powerbi.com/. When I try to push data from C#/Python to that dataset it works perfectly, but if I try to use Typescript, it keeps giving me the 404 NOT FOUND, on the same streaming dataset push URL.
public sendPowerBi(url: string, data: any) {
return this.http
.put(url, JSON.stringify(data), { headers: this.headers }).subscribe();
}where
this.headers = new Headers({
'Content-Type': 'application/json',
});Here I don't have an access token. Can you please give me a suggestion?
Hello!
I've created a dashboard and a streaming dataset on https://app.powerbi.com/. When I try to push data from C#/Python to that dataset it works perfectly, but if I try to use Typescript, it keeps giving me the 404 NOT FOUND, on the same streaming dataset push URL.
public sendPowerBi(url: string, data: any) {
return this.http
.put(url, JSON.stringify(data), { headers: this.headers }).subscribe();
}where
this.headers = new Headers({
'Content-Type': 'application/json',
});Here I don't have an access token. Can you please give me a suggestion?
Hi @Kalemstorm,
Could you try using POST requests instead of PUT to push your data to Power BI streaming data dataset you created to see if it works? ![]()
public sendPowerBi(url: string, data: any) {
return this.http
.post(url, JSON.stringify(data), { headers: this.headers }).subscribe();
}
Regards
I've already tried that. Actually, I've tried it before PUT and I've asked the question only after...
Thank you! I've asked the question there
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |