Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hello. I am trying to figure out how to stream/download the exported PDF file from a Power BI API Export call. I'm using a NodeJS backend with a React frontend. Here's what I'm trying to do in the backend:
const queryResults = await fetch(`https://api.powerbi.com/v1.0/myorg/groups/${workspaceId}/reports/${reportId}/exports/${exportId}/file`, {
method: 'GET',
headers: {
'content-type': 'application/pdf',
authorization: `Bearer ${(await getAccessToken()).accessToken}`
}
});
return queryResults;
Solved! Go to Solution.
Hi @trpeel ,
It sounds like you are trying to download a PDF file that has been exported from a Power BI report using the Power BI API. However, it return size 0. The possible reason is the API call is not correctly authenticated. Please update the code as below and check if it can return the expected result...
const fetch = require('node-fetch');
const workspaceId = '<your workspace ID>';
const reportId = '<your report ID>';
const exportId = '<your export ID>';
const accessToken = '<your access token>';
const url = `https://api.powerbi.com/v1.0/myorg/groups/${workspaceId}/reports/${reportId}/exports/${exportId}/file`;
const options = {
method: 'GET',
headers: {
'Content-Type': 'application/pdf',
'Authorization': `Bearer ${accessToken}`
}
};
fetch(url, options)
.then(response => {
if (!response.ok) {
throw new Error(`HTTP error ${response.status}`);
}
return response.buffer();
})
.then(buffer => {
// Do something with the PDF buffer, such as write it to a file or send it to the client
})
.catch(error => {
console.error(error);
});
Best Regards
Thank you very much. The response.buffer was the part I was missing. I appreciate the help.
Hi @trpeel ,
It sounds like you are trying to download a PDF file that has been exported from a Power BI report using the Power BI API. However, it return size 0. The possible reason is the API call is not correctly authenticated. Please update the code as below and check if it can return the expected result...
const fetch = require('node-fetch');
const workspaceId = '<your workspace ID>';
const reportId = '<your report ID>';
const exportId = '<your export ID>';
const accessToken = '<your access token>';
const url = `https://api.powerbi.com/v1.0/myorg/groups/${workspaceId}/reports/${reportId}/exports/${exportId}/file`;
const options = {
method: 'GET',
headers: {
'Content-Type': 'application/pdf',
'Authorization': `Bearer ${accessToken}`
}
};
fetch(url, options)
.then(response => {
if (!response.ok) {
throw new Error(`HTTP error ${response.status}`);
}
return response.buffer();
})
.then(buffer => {
// Do something with the PDF buffer, such as write it to a file or send it to the client
})
.catch(error => {
console.error(error);
});
Best Regards
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |