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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
azulcore
Frequent Visitor

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>
 

 

1 ACCEPTED SOLUTION
v-jiascu-msft
Employee
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

 

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-jiascu-msft
Employee
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

 

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors