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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
GunterM
Regular Visitor

Error creating new reports using Power BI Embedded

Hi,

 

I've written the following code to try create a new report using Power BI Embedded:

 

authContext.acquireToken(window.config.endpoints.powerbiUri, function (error, token) {

                let datasetId = $("#datasetId").val();
                let embedContainer = $("#embedContainer").get(0);
           
                let models = window['powerbi-client'].models;

                let config = {
                    accessToken: token,
                    datasetId: datasetId,
                    embedUrl: "https://embedded.powerbi.com/appTokenReportEmbed"
                };

                let report = powerbi.createReport(embedContainer, config);

                report.on("saved", function (event) {
                    let msg = `report saved ${JSON.stringify(event.detail, null, "  ")} `;
                    alert(msg);
                });

                report.on("error", function (event) {
                    let msg = `error creating report saved ${JSON.stringify(event.detail, null, "  ")} `;
                    console.log(msg);
                });

            });

 

 

Everytime the code runs, an NotAuthorized error is logged however. The account that I used to test my code has admin permissions on Power BI.

 

error creating report saved {
  "message": "CreateReportFailed",
  "detailedMessage": null,
  "technicalDetails": {
    "requestId": "4a909e2f-4552-0433-13ed-3e9a3d2346b2"
  },
  "errorCode": "NotAuthorized"
} 

What is wrong with my security ? I'm using the "User owns data" scenario btw...

Gunther

1 REPLY 1
v-ljerr-msft
Employee
Employee

Hi @GunterM,

 

It seems to be that the embedded token is invalid. How did you get the token? 

 

In addition, here is similar thread which should help you make sure the token is valid. Smiley Happy

 

Regards

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Kudoed Authors