jcoke
jcoke

Reputation: 1891

Is there a way to Embed a Power Bi report for customers without using AAD as authentication?

Let's say I have a portal/website in which I want to embed a Power Bi report onto for strictly customers only (non-license users).

Is there a way to do this if AAD is not available?

I have checked the documentation and the only option specified by Microsoft is authentication via Azure Active Directory.

Upvotes: 0

Views: 580

Answers (1)

PhineasJ
PhineasJ

Reputation: 342

You can embed your Power BI Report with an embedded token in the browser side. See this document.
Of course in the backend, you still need to provide appId, secret, workspaceId, report id, etc to generate this embedded token. You can build your own logic for current login user in the browser and the embedded token generate from Backend API.

Upvotes: 1

Related Questions