Power BI report integration from local server

how to integrate PowerBI reports from local system and use them in the asp.net MVC? i'm trying to integrate powerBI report in my project which is published on powerBI report server in my system (not online powerBI). while googling i'm not able to find what i needed, most of them recommends to publish the report to cloud and embed them.

Upvotes: 1

Views: 1297

Answers (1)

Andrey Nikolov
Andrey Nikolov

Reputation: 13460

To embed a report from Power BI Report Server, add an iframe in your app, with source the URL of the report, and added the following query string parameter ?rs:embed=true. For example:

https://myserver/reports/powerbi/Sales?rs:embed=true

If your app will be used inside your network, this is enough. But if you want to use it by users over internet (users, which are not in your network), then you will need to expose the Power BI Report Server's reports portal to the world too.

For more information see:

Upvotes: 2

Related Questions