Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have created an embed token and obtained the embed URL and report ID. I plug in all the information into the JavaScript Demo site (https://microsoft.github.io/PowerBI-JavaScript/demo/v2-demo/index.html#) and all works well everytime. But now I am trying to put it into an HTML file to see it run via my own scipt but I get: This content isn't available. Learn more about Power BI.
Also, I have a clientid and clientsecret when I creat my codes, not sure if that make a difference then just using a clientid
Below is the script I am using:
<script src="https://microsoft.github.io/PowerBI-JavaScript/demo/node_modules/powerbi-client/dist/powerbi.js"></script>
<script type="text/javascript">
window.onload = function () {
var embedConfiguration = {
type: 'report',
accessToken: '[Embed Token]',
embedUrl: '[URL]',
id:'[report id]',
settings: {
filterPaneEnabled: true,
navContentPaneEnabled: false
} };
var $reportContainer = $('#dashboardContainer');
var report = powerbi.embed($reportContainer.get(0), embedConfiguration);
}
function reloadreport(){
var element = $('#dashboardContainer');
alert(element);
var report = powerbi.get(element);
report.reload().catch(error => {console.log(error) });
};
</script>
<div id="dashboardContainer">
</div>
</html>
Solved! Go to Solution.
Hi @azulcore,
According to my test, maybe you need to update the token that will expire in one hour.
Best Regards,
Dale
Hi @azulcore,
According to my test, maybe you need to update the token that will expire in one hour.
Best Regards,
Dale
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 10 | |
| 10 | |
| 4 | |
| 3 | |
| 3 |