Forum Discussion
Embedding is disabled on tenant level
suddenly started error {"error":{"code":"InvalidRequest","message":"Embedding is disabled on tenant level"}}
here .It was working properly somedays before no clue what chnaged
var generateTokenRequestParameters = new GenerateTokenRequest(accessLevel: "view");
var tokenResponse = await client.Dashboards.GenerateTokenInGroupAsync(GroupId, dashboard.Id, generateTokenRequestParameters);
kamalwtw wrote:
suddenly started error {"error":{"code":"InvalidRequest","message":"Embedding is disabled on tenant level"}}
here .It was working properly somedays before no clue what chnaged
var generateTokenRequestParameters = new GenerateTokenRequest(accessLevel: "view");
var tokenResponse = await client.Dashboards.GenerateTokenInGroupAsync(GroupId, dashboard.Id, generateTokenRequestParameters);The error message indicates that your tenant admin has disabled the embedding capacity. If you're one of the admin, you can find the information by clicking "Admin portal"->"Tenant settings"->"Developer settings"(scroll to bottom).
Thanks .
Issue fixed .
Reason:report was created before tenancy changes implemented enabled embed =false.
so need to refresh report and create new version of report again to affect changes after tenancy changes enabled embed =true. at admin level (admin portal)
2 Replies
- Eric_ZhangMicrosoft Employee
kamalwtw wrote:
suddenly started error {"error":{"code":"InvalidRequest","message":"Embedding is disabled on tenant level"}}
here .It was working properly somedays before no clue what chnaged
var generateTokenRequestParameters = new GenerateTokenRequest(accessLevel: "view");
var tokenResponse = await client.Dashboards.GenerateTokenInGroupAsync(GroupId, dashboard.Id, generateTokenRequestParameters);The error message indicates that your tenant admin has disabled the embedding capacity. If you're one of the admin, you can find the information by clicking "Admin portal"->"Tenant settings"->"Developer settings"(scroll to bottom).
- kamalwtwFrequent Visitor
Thanks .
Issue fixed .
Reason:report was created before tenancy changes implemented enabled embed =false.
so need to refresh report and create new version of report again to affect changes after tenancy changes enabled embed =true. at admin level (admin portal)