Using Bot framework V4 is it possible to get a screenshot of powerbi report inside the Microsoft Teams using Azure Blob storage otr just by passing the link of an pbix dynamically?
Asked
Active
Viewed 405 times
2 Answers
0
In teams, you can press the + :
To add a TAB, here you have the option to include a power bi report:

Aldert
- 4,209
- 1
- 9
- 23
-
is it possible for bots also? – Sai Jul 25 '19 at 09:50
-
That depends what you want to do with the bot, what is your workflow? Please update your question so we understand what you try to achieve. – Aldert Jul 25 '19 at 10:01
0
As far as I know, it is not possible to programmatically export a Power BI dashboard / graph to an image. If you want to show a Power BI dashboard / graph in Teams via a bot, I would make use of the possibilities to use a tab.
- Combine your bot with a tab and create a deep link to your tab from the bot. The custom tab included with your bot will receive the context and you can build a web application that loads the right dashboard using Power BI embedded.

Mick
- 2,946
- 14
- 19
-
1@Sai - There are different ways, One is create a web app and pull it inside teams as a tab. The other way is to use the PowerBI tool which is provided inside Teams and it will help you pull the reports/dashboards inside teams. The second question was about bot - There are different ways you can achieve it, one is [Deeplink](https://learn.microsoft.com/en-us/microsoftteams/platform/concepts/deep-links) to tab other way is to show report in [Task Module](https://learn.microsoft.com/en-us/microsoftteams/platform/concepts/task-modules/task-modules-bots) from a Bot. – Abhijit Jul 29 '19 at 09:08