为可编辑的Power BI Embedded仪表板生成嵌入令牌时出错

时间:2019-09-23 16:46:19

标签: powerbi powerbi-embedded

我正在使用Powershell脚本为Power BI仪表板生成嵌入令牌:

Login-PowerBI

$url = "https://api.powerbi.com/v1.0/myorg/groups/395ce617-f2b9-xyz/dashboards/084c9cc4-xyz/GenerateToken"

$body = "{ 'accessLevel': 'View' }"

$response = Invoke-PowerBIRestMethod -Url $url -Body $body -Method Post -ErrorAction "Stop"
$response

$json = $response | ConvertFrom-Json
$json.token

这可行,但是我希望通过更改accessLebel来使仪表板可编辑:

$body = "{ 'accessLevel': 'Edit' }"

不是生成令牌,而是抛出错误,指示Bad Request,但没有其他详细信息。如何确定应如何创建请求?仪表板甚至可以像报告一样进行编辑吗? (我可以毫无问题地为报告生成编辑令牌)我找不到为此的代码示例,并且我注意到在线示例不允许您像编辑报告一样编辑仪表板:https://microsoft.github.io/PowerBI-JavaScript/demo/v2-demo/index.html

1 个答案:

答案 0 :(得分:2)

您收到错误请求错误,因为仪表板不支持accessLevel:Edit。 该组中的“为仪表板生成EmbedToken”支持的accessLevel仅是“视图”。

创建和编辑accessLevel仅适用于报告。

请参阅此链接:https://docs.microsoft.com/en-us/rest/api/power-bi/embedtoken/dashboards_generatetokeningroup#tokenaccesslevel

您可以在此处使用“试用”功能来查看如何进行REST API调用。