Jump to content

Power BI: Difference between revisions

From Resco's Wiki
Marek Rodak (talk | contribs)
No edit summary
Line 69: Line 69:
In the code downloaded from the [https://github.com/Resconet/JSBridge/tree/master/Integration/PowerBi Power BI integration by Resco], you can find the method where we try to retrieve the access token using settings for OAuth OAuth_Settings.
In the code downloaded from the [https://github.com/Resconet/JSBridge/tree/master/Integration/PowerBi Power BI integration by Resco], you can find the method where we try to retrieve the access token using settings for OAuth OAuth_Settings.


[[File:Power BI name of the account.png|alt=Displaying Power BI dashboard in the iframe: method to retrieve the access token using settings for OAuth OAuth_Settings|600px]]
[[File:Power bi name of the account.png|alt=Displaying Power BI dashboard in the iframe: method to retrieve the access token using settings for OAuth OAuth_Settings|600px]]


The settings are stored in the associated name in the secure storage. If any settings exist for the passed name, we will use them, the [https://github.com/Resconet/JSBridge/blob/master/Integration/PowerBi/PowerBiOAuthSettings.js OAuth_Settings] are ignored.
The settings are stored in the associated name in the secure storage. If any settings exist for the passed name, we will use them, the [https://github.com/Resconet/JSBridge/blob/master/Integration/PowerBi/PowerBiOAuthSettings.js OAuth_Settings] are ignored.

Revision as of 10:04, 12 January 2024

Wikipedia logo
Wikipedia has an article on a similar subject:

Power BI is a business analytics service by Microsoft. It can be used along with the Resco platform. This wiki offers two examples of integration between Resco and Power BI:

  • Display Power BI dashboards within Resco Mobile CRM (described in this article)
  • Visualize data from Resco questionnaires in Power BI (see deep dive)

Getting started

Resco Mobile CRM and other Resco mobile apps can display Power BI dashboards in an iframe.

An example of the integration is available on GitHub.

Displaying Power BI dashboard in the iframe overview

This section serves as a quick overview of the steps required to integrate your Power BI properly with Resco.

For any questions, please contact our technical support.

Check permissions

Check the permissions for the Power BI Service in your https://portal.azure.com/.

  1. Go to App registrations and open your app.
  2. Select Manage > API permissions from the menu.
  3. Verify that the appropriate permissions are available.

Displaying Power BI dashboard in the iframe: Check Power BI service permissions in your https://portal.azure.com

Get OAuth settings

  1. Select Overview from the menu.
  2. Copy the value of the parameter Application (client) ID.

Displaying Power BI dashboard in the iframe: Get OAuth settings: Power BI copy client id

Get client secrets

  1. Select Manage > Certificates & secrets from the menu.
  2. Create a new client secret or use an existing one.

Displaying Power BI dashboard in the iframe: Power BI client secret

Configure authentication

  1. Select Manage > Authentication from the menu.
  2. Configure the authentication options as needed.

Displaying Power BI dashboard in the iframe: Power BI authentication

Settings for workspace and and report / dashboards

To get the settings for workspace and report / dashboards, follow the instructions in Microsoft documentation.

Advanced

If you have any problem with the previous step, use this nuget package in the PowerShell console.

Start the PowerShell console as an Administrator and run the following commands. (Microsoft docs)

  • Start PowerShell as an Admin.
  • Install-Module -Name MicrosoftPowerBIMgmt
  • Connect-PowerBIServiceAccount.
  • Get-PowerBIWorkspace
  • Get-PowerBIworkspace -name "{report_name}" | Get-PowerBIReport
  • Get-PowerBIReport -Id 5364xxxx-xxxx-xxxx-xxxx-xxxxf1e7df89
  • Get access token: Get-PowerBIAccessToken -AsString

Important

In the code downloaded from the Power BI integration by Resco, you can find the method where we try to retrieve the access token using settings for OAuth OAuth_Settings.

Displaying Power BI dashboard in the iframe: method to retrieve the access token using settings for OAuth OAuth_Settings

The settings are stored in the associated name in the secure storage. If any settings exist for the passed name, we will use them, the OAuth_Settings are ignored.

In case you change those settings and want to apply these changes, you should delete all data in the setup, or pass a different name for the new settings.

See also