Tutorial: Embed Power BI content using a sample embed for your customers' application
APPLIES TO:
App owns data
User owns data
Embedded analytics and Power BI Embedded (the Azure offer) allow you to embed Power BI content such as reports, dashboards and tiles, into your application.
In this tutorial, you'll learn how to:
- Set up your embedded environment.
- Configure an embed for your customers (also known as app owns data) sample application.
To use your application, your users won't need to sign in to Power BI or have a Power BI license.
We recommend using the embed for your customers method to embed your Power BI content, if you're an independent software vendor (ISV) or a developer, who wants to create applications for third parties.
Important
If you are embedding content for a national/regional cloud, the first few steps of this tutorial are different. See Embed content for national/regional clouds for details.
Code sample specifications
This tutorial includes instructions for configuring an embed for your customers sample application in one of the following frameworks:
- .NET Framework
- .NET Core
- Java
- Node JS
- Python
The code samples support the following browsers:
- Microsoft Edge
- Google Chrome
- Mozilla Firefox
Prerequisites
Before you start this tutorial, verify that you have both the Power BI and code dependencies listed below:
Power BI dependencies
Your own Azure Active Directory tenant.
To authenticate your app against Power BI, you'll need one of the following:
Service principal - An Azure Active Directory (Azure AD) service principal object that allows Azure AD to authenticate your app.
Power BI Pro license - This will be your master user and your app will use it to authenticate to Power BI.
A Power BI Premium Per User (PPU) license - This will be your master user and your app will use it to authenticate to Power BI.
Note
To move to production you'll need a capacity.
Code dependencies
.NET Core 3.1 SDK (or higher)
An integrated development environment (IDE). We recommend using one of the following:
Method
To create an embed for your customers sample app, follow these steps:
Step 1 - Select your authentication method
Your embedded solution will vary depending on the authentication method you select. Therefore, it's important to understand the differences between the authentication methods, and decide which one best suits your solution.
The table below describes a few key differences between the service principal and master user authentication methods.
Consideration | Service principal | Master user |
---|---|---|
Mechanism | Your Azure AD app's service principal object allows Azure AD to authenticate your embedded solution app against Power BI. | Your Azure AD app uses the credentials (username and password) of a Power BI user, to authenticate against Power BI. |
Security | Service principal is the Azure AD recommended authorization method. If you're using a service principal, you can authenticate using either an application secret or a certificate.This tutorial only describes using service principal with an application secret. To embed using a service principal and a certificate, refer to the service principal with a certificate article. | This authentication method isn't as secure as a service principal. You have to be vigilant with the master user credentials (username and password). For example, don't expose them in your embedding application, and change the password frequently. |
Azure AD delegated permissions | Not required. | Your master user or an administrator has to grant consent for your app to access Power BI REST API permissions (also known as scopes). For example, Report.ReadWrite.All. |
Power BI service access | You can't access Power BI service with a service principal. | You can access Power BI service with your master user credentials. |
License | Doesn't require a Pro license. You can use content from any workspace that you're a member or an admin of. | Requires a Power BI Pro or Premium Per User (PPU) license. |
Step 2 - Register an Azure AD application
Registering your application with Azure AD allows you to:
- Establish an identity for your app
- Let your app access the Power BI REST APIs
- If you're using a master user - Specify your app's Power BI REST permissions
To register your application with Azure AD, follow the instructions in Register your application.
Note
Before registering your application, you'll need to decide which authentication method to use, service principal or master user.
Step 3 - Create a Power BI workspace
Power BI keeps your reports, dashboards, and tiles in a workspace. To embed these items, you'll need to create them and upload them into a workspace.
Tip
If you already have a workspace, you can skip this step.
To create a workspace, do the following:
Sign in to Power BI.
Select Workspaces.
Select Create a workspace.
Name your workspace and select Save.
Step 4 - Create and publish a Power BI report
Your next step is to create a report and upload it to your workspace. You can create your own report using Power BI Desktop, and then publish it to your workspace. Or, you can upload a sample report to your workspace.
Tip
If you already have a workspace with a report, you can skip this step.
To download a sample report and publish it to your workspace, follow these steps:
Open the GitHub Power BI Desktop samples folder.
Select Code and then select Download zip.
Extract the downloaded ZIP and navigate to the Samples Reports folder.
Select a report to embed, and publish it to your workspace.
Step 5 - Get the embedding parameter values
To embed your content, you need to obtain certain parameter values. The table below shows the required values, and indicates if they're applicable to the service principal authentication method, the master user authentication method, or both.
Before you embed your content, make sure you have all the values listed below. Some of the values will differ, depending on the authentication method you're using.
Parameter | Service principal | Master user |
---|---|---|
Client ID | ![]() |
![]() |
Workspace ID | ![]() |
![]() |
Report ID | ![]() |
![]() |
Client secret | ![]() |
![]() |
Tenant ID | ![]() |
required only for Node JS |
Power BI username | ![]() |
![]() |
Power BI password | ![]() |
![]() |
Client ID
Tip
Applies to: Service principal
Master user
To get the client ID GUID (also know as application ID), follow these steps:
Log into Microsoft Azure.
Search for App registrations and select the App registrations link.
Select the Azure AD app you're using for embedding your Power BI content.
From the Overview section, copy the Application (client) ID GUID.
Workspace ID
Tip
Applies to: Service principal
Master user
To get the workspace ID GUID, follow these steps:
Sign in to Power BI service.
Open the report you want to embed.
Copy the GUID from the URL. The GUID is the number between /groups/ and /reports/.
Alternatively, you can find the workspace ID in the Admin portal settings by selecting Details next to the workspace name.
Report ID
Tip
Applies to: Service principal
Master user
To get the report ID GUID, follow these steps:
Sign in to Power BI service.
Open the report you want to embed.
Copy the GUID from the URL. The GUID is the number between /reports/ and /ReportSection.
Client secret
Tip
Applies to: Service principal
Master user
To get the client secret, follow these steps:
Log into Microsoft Azure.
Search for App registrations and select the App registrations link.
Select the Azure AD app you're using for embedding your Power BI content.
Under Manage, select Certificates & secrets.
Under Client secrets, select New client secret.
In the Add a client secret pop-up window, provide a description for your application secret, select when the application secret expires, and select Add.
From the Client secrets section, copy the string in the Value column of the newly created application secret. The client secret value is your client ID.
Note
Make sure you copy the client secret value when it first appears. After navigating away from this page, the client secret will be hidden and you'll not be able to retrieve its value.
Tenant ID
Tip
Applies to: Service principal
Master user
To get the tenant ID GUID, follow these steps:
Log into Microsoft Azure.
Search for App registrations and select the App registrations link.
Select the Azure AD app you're using for embedding your Power BI content.
From the Overview section, copy the Directory (tenant) ID GUID.
Power BI username and password
Tip
Applies to: Service principal
Master user
Obtain the username and password of the Power BI user you're using as your master user. This is the same user you used to create a workspace and upload a report to, in Power BI service.
Step 6 - Service principal API access
Tip
Applies to: Service principal
Master user
This step is only relevant if you're using the service principal authentication method. If you're using a master user, skip this step and continue with Step 7 - Enable workspace access.
For an Azure AD app to be able to access the Power BI content and APIs, a Power BI admin needs to enable service principal access in the Power BI admin portal. If you're not the admin of your tenant, get the tenant's admin to enable the Tenant settings for you.
In Power BI service, select Settings > Settings > Admin portal.
Select Tenant settings and then scroll down to the Developer settings section.
Expand Allow service principals to use Power BI APIs, and enable this option.
Note
When using a service principal, it's recommended to limit its access to the tenant settings using a security group. To learn more about this feature, see these sections in the service principal article:
Step 7 - Enable workspace access
To enable your Azure AD app access objects such as reports, dashboards and datasets in the Power BI service, add the service principal or master user, as a member or admin to your workspace.
Sign in to Power BI service.
Scroll to the workspace you want to enable access for, and from the More menu, select Workspace access.
In the Access pane, depending on which authentication method you're using, copy the service principal or master user to the Enter email address text box.
Note
If you're using a service principal, its name is the name you gave your Azure AD app.
Select Add.
Step 8 - Embed your content
The Power BI embedded sample application allows you to create an embed for your customers Power BI app.
Follow these steps to modify the embed for your customers sample application, to embed your Power BI report.
Open the Power BI developer samples folder.
Select Code and then select Download zip.
Extract the downloaded ZIP and navigate to the PowerBI-Developer-Samples-master folder.
Depending on the language you want your app to use, open one of these folders:
- .NET Core
- .NET Framework
- Java
- Node JS
- Python
Note
The embed for your customers sample applications only support the frameworks listed above. The React sample application only supports the embed for your organization solution.
Open the Embed for your customers folder.
Open the embed for your customers sample app using one of these methods:
If you're using Visual Studio, open the AppOwnsData.sln file.
If you're using Visual Studio Code, open the AppOwnsData folder.
Open appsettings.json.
Depending on your authentication method, fill in the following parameter values:
Parameter Service principal Master user AuthenticationMode
ServicePrincipal MasterUser ClientId
Your Azure AD app client ID Your Azure AD app client ID TenantId
Your Azure AD tenant ID N/A PbiUsername
N/A Your master user username, see Power BI username and password PbiPassword
N/A Your master user password, see Power BI username and password ClientSecret
Your Azure AD client secret N/A WorkspaceId
The ID of the workspace with your embedded report, see Workspace ID The ID of the workspace with your embedded report, see Workspace ID ReportId
The ID of the report you're embedding, see Report ID The ID of the report you're embedding, see Report ID Run the project by selecting the appropriate option:
If you're using Visual Studio, select IIS Express (play).
If you're using Visual Studio Code, select Run > Start Debugging.
Developing your application
After configuring and running the embed for your customers sample application, you can start developing your own application.
Try out the Power BI embedded analytics playground to get started developing and to keep up with all the new Power BI Embedded features and updates.
When you're ready, review the move to production requirements. You'll also need a capacity, and should review the capacity planning article to establish which SKU best suits your needs.
Important
If you used free embed trial tokens for development, you must buy a capacity for production. Until a capacity is purchased, the Free trial version banner will continue to appear at the top of the embedded report.
Next steps
More questions? Ask the Power BI Community.
Feedback
Submit and view feedback for