-
Notifications
You must be signed in to change notification settings - Fork 3
Getting Started Blazor Server
Turner Bass edited this page May 20, 2022
·
4 revisions
- Using a Client Secret
- Using a Client Certificate
- Create the Group
- Add the App Registration's Service Principal to the Group
From the Visual Studio Package Manager Console
Install-Package AstroPanda.Blazor.PowerBI
or from the .NET CLI
dotnet add package AstroPanda.Blazor.PowerBI
"PowerBI": {
"TenantId": "<your-AD-tenant-id>",
"ClientId": "<your-client-id>",
"ClientSecret": "<your-client-secret-for-the-above-client>",
"Reports": {
"report-a": { // the name here is to key for accessing your report reference during runtime
"WorkspaceId": "<power-bi-workspace-id>",
"ReportId": "<power-bi-report-id>"
},
"report-b": {
"WorkspaceId": "<power-bi-workspace-id>",
"ReportId": "<power-bi-report-id>"
},
...
"report-n": {
"WorkspaceId": "<power-bi-workspace-id>",
"ReportId": "<power-bi-report-id>"
}
}
}