Forum Discussion

azulcore's avatar
azulcore
Frequent Visitor
8 years ago
Solved

Power BI Embed script does not work: This content isn't available. Learn more about Power BI.

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>
 

 

  • Hi azulcore,

     

    According to my test, maybe you need to update the token that will expire in one hour.

    Power_BI_Embed_script_does_not_work

     

     

    Best Regards,

    Dale

     

1 Reply

  • v-jiascu-msft's avatar
    v-jiascu-msft
    Microsoft Employee

    Hi azulcore,

     

    According to my test, maybe you need to update the token that will expire in one hour.

    Power_BI_Embed_script_does_not_work

     

     

    Best Regards,

    Dale