The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I am using an Azure Token to call PBi API https://api.powerbi.com/v1.0/myorg/reports/{reportID}, as my setup is User Owns Data (Embed for Org). I have received a 200 reponse with a JSON on report details as follow:
In the embedURL, I noticed that the URL I received is a lot longer than online samples, and contains an &config at the end (the string seems like a token but is a bit shorter than my Azure Token).
In my client-side JavaScript to embed my report (Step 5 in link below). What is the correct embedURL should i use? Is it to use the full string from my example above or use another way?
https://learn.microsoft.com/en-us/power-bi/developer/embedded/embed-organization-app
Solved! Go to Solution.
I tested both ways below and it worked for me:
1) Add ReportID at the end of embedURL
The link below has a set of html codes for embedding power bi. I have tried out the codes and it works. I gather this is a short-hand way to write out powerbi.embed in powerbi-client
https://torpedo.pt/power-bi-embedded/
embedUrl = "https://app.powerbi.com/reportEmbed?reportId=REPORT_ID";
2) Standard Way
See Step 5 of the link below.
https://learn.microsoft.com/en-us/power-bi/developer/embedded/embed-organization-app
var embedUrl = "https://app.powerbi.com/reportEmbed";
Conclusion
To answer my own question from the earlier post. Drop the "&config....." portion if you are using bootstrap and drop "?reportID......" if you are using the standard way.
I tested both ways below and it worked for me:
1) Add ReportID at the end of embedURL
The link below has a set of html codes for embedding power bi. I have tried out the codes and it works. I gather this is a short-hand way to write out powerbi.embed in powerbi-client
https://torpedo.pt/power-bi-embedded/
embedUrl = "https://app.powerbi.com/reportEmbed?reportId=REPORT_ID";
2) Standard Way
See Step 5 of the link below.
https://learn.microsoft.com/en-us/power-bi/developer/embedded/embed-organization-app
var embedUrl = "https://app.powerbi.com/reportEmbed";
Conclusion
To answer my own question from the earlier post. Drop the "&config....." portion if you are using bootstrap and drop "?reportID......" if you are using the standard way.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
53 | |
26 | |
14 | |
14 | |
12 |
User | Count |
---|---|
103 | |
37 | |
25 | |
23 | |
20 |