I'm not a coder, so this could be a silly question...
I've read al the steps to be taken to get an EmbedURL, EmbedID and token. I've found a samplescript to embed the report which I've used, but I'm getting the message "Content is not available".
PowerBi is started and loading (the logo is visable), but the report is not showing up.
On the testsite on github it works (https://microsoft.github.io/PowerBI-JavaScript/demo/v2-demo/index.html).
the code I'm using is a singlepage tester:
<html><script src="https://microsoft.github.io/PowerBI-JavaScript/demo/node_modules/jquery/dist/jquery.js"></script><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: 'H4sIAAAAAAAEACWVxQ7t--------bla----ThignOLIUBiiF4JPYp9H_IP5__4fXjzlxZoKAAA=', id: '0eb3674a-xxxx-xxxx-xxxx-xxxx1fb6b17d', embedUrl: 'https://app.powerbi.com/reportEmbed?reportId=0eb36741461fb6b17d&groupId=1928fd4564' }; var $reportContainer = $('#reportContainer'); var report = powerbi.embed($reportContainer.get(0), embedConfiguration); <!--validateReportLoad incorrectly returns schema errors for valid filters #16https://github.com/Microsoft/powerbi-models/issues/16--> report.on('loaded', function() { console.log('report.on - loaded'); }); } </script><div id="reportContainer" powerbi-settings-nav-content-pane-enabled="true" powerbi-settings-filter-pane-enabled="true"></div></html>
Has any got an idea what I've done wrong? permissions, public in stead of private, etc...
Thanks for all the help you can provide
Jordy