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
marcobaciga
Helper I
Helper I

Integration Power BI Desktop report to PHP application with PowerBI API

Hi,

is it possible integrate my php application a report or a tile powerbi using PowerBI API?

Can you put the php code to do its?

 

Thank you

 

Marco

1 ACCEPTED SOLUTION

Hi, i have tried this solution.

And when i run web site i receive a mistake.

Promise: not definited

 

in this part of code:

 

     var promise = new Promise(function (resolve, reject) {
                deferred.resolve = resolve;
                deferred.reject = reject;
            });
            deferred.promise = promise;
            return deferred;

 

what cani do?

 

Marco

 

View solution in original post

3 REPLIES 3
Eric_Zhang
Employee
Employee

@marcobaciga

The core of embedding Power BI reports is using a <iframe> tag in a HTML page, I think it won't be a problem in PHP.

 

<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: 'eyJ0eXAiOiYOUR-TOKEN-HERE-pgVRA',
    embedUrl: 'https://app.powerbi.com/reportEmbed?reportId=9f841c40-b361-490b-8f08-01dd2b8e6645'  
}; 

var $reportContainer = $('#reportContainer');
 
var report = powerbi.embed($reportContainer.get(0), embedConfiguration); 

} 

</script> 
<div id="reportContainer"></div>

</html>  

The accessToken can be generated via ADAL for .NET, check this github page. As to how to get the accessToken in PHP, it is actually out of the topic of this forum. I'd suggest you post your question in dedeciated Azure AD forum.

Hi, i have tried this solution.

And when i run web site i receive a mistake.

Promise: not definited

 

in this part of code:

 

     var promise = new Promise(function (resolve, reject) {
                deferred.resolve = resolve;
                deferred.reject = reject;
            });
            deferred.promise = promise;
            return deferred;

 

what cani do?

 

Marco

 

Anonymous
Not applicable

Hello all,

I tried the code but receiving the error,require help on the same. 

 

Capture1.PNG

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