为创建问题生成嵌入令牌

时间:2017-07-27 06:39:21

标签: c# powerbi powerbi-embedded

我遇到了嵌入令牌的问题。我完成了此链接(5 steps to push data into a dataset)中描述的所有5个步骤,一切都运行良好:创建数据集,创建表并使用数据填充,没有任何问题。

我有一项任务是将数据集(而不是报告)嵌入到网页中。 我找到了此页面(Power BI Embeded Sample),其中显示了嵌入式报表/数据集/信息中心/磁贴的外观。在这个页面上有一个嵌入式令牌。 我google了一下,发现这个页面(Generate Embed Token Example)描述了HTTP POST请求的外观。我做了数据集的部分。这是我的代码示例:

private static void generateEmbedToken()
    {
        // TokenCredentials Initializes a new instance of the
        // Microsoft.Rest.TokenCredentials class with
        // the given 'Bearer' token.
        var credentials = new TokenCredentials(token);
        // Initialize PowerBIClient with credentials
        var powerBIclient = new Microsoft.PowerBI.Api.V2.PowerBIClient(credentials)
        {
            // BaseUri is the api endpoint, default is https://api.powerbi.com
            BaseUri = new Uri("https://api.powerbi.com")
        };
        try
        {
            // Create body where accessLevel = View, datasetId = "" by default
            var requestParameters = new GenerateTokenRequest(TokenAccessLevel.Create, datasetId, true);
            // Generate EmbedToken This function sends the POST message
            //with all parameters and returns the token
            EmbedToken token = powerBIclient.Reports.GenerateTokenForCreate(requestParameters);
            embedToken = token.Token;
        }
        catch (Exception exc)
        {
            Console.WriteLine(exc.ToString());
        }
    }

我得到了下一个错误:

Microsoft.Rest.HttpOperationException: Operation returned an invalid status code 'NotFound'
   at Microsoft.PowerBI.Api.V2.Reports.<GenerateTokenForCreateWithHttpMessagesAsync>d__8.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at Microsoft.PowerBI.Api.V2.ReportsExtensions.<GenerateTokenForCreateAsync>d__7.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at Microsoft.PowerBI.Api.V2.ReportsExtensions.GenerateTokenForCreate(IReports operations, GenerateTokenRequest requestParameters)
   at PushDataApp.Program.generateEmbedToken() in C:\Users\PC\Documents\Visual Studio 2017\Projects\PushDataApp\PushDataApp\Program.cs:line 388

这是第388行:

EmbedToken token = powerBIclient.Reports.GenerateTokenForCreate(requestParameters);

我不知道为什么会这样。 我从这里获取了这段代码(Generate Embed Token Example),但我为了我的目的做了一些更改(因为我需要数据集而不是报告)。

我会感激任何帮助。

1 个答案:

答案 0 :(得分:0)

尝试使用Power BI嵌入时,我遇到了类似的错误。我建议使用像Fiddler这样的工具来拦截应用程序和Power BI之间的通信,并找出实际返回的错误代码。

Telerik的以下文章展示了如何使用Fiddler拦截流量:Capturing Traffic from .NET Services with Fiddler