Tag: powerbi

嵌入Power Bi Report Promise未定义为powerbi.js

我创建了一个power bi报告。 我想将此报告嵌入我的MVC网站。 这是我的代码: – private static readonly string ClientID = ConfigurationManager.AppSettings[“ClientID”]; private static readonly string ClientSecret = ConfigurationManager.AppSettings[“ClientSecret”]; private static readonly string RedirectUrl = ConfigurationManager.AppSettings[“RedirectUrl”]; private static readonly string AADAuthorityUri = ConfigurationManager.AppSettings[“AADAuthorityUri”]; private static readonly string PowerBiAPI = ConfigurationManager.AppSettings[“PowerBiAPI”]; private static readonly string PowerBiDataset = ConfigurationManager.AppSettings[“PowerBiDataset”]; private static readonly string baseUri = PowerBiDataset; private […]

如何使用非交互式身份validation连接到Power BI API?

用C#编码。 我正在遵循这个指南: https://azure.microsoft.com/en-us/documentation/articles/resource-group-authenticate-service-principal/#authenticate-service-principal-with-password—powershell%E2%80%8C%E2 %80%8B 但它不起作用而且不是Power BI特定的,因此我不确定如何将其应用于Power BI API。 在我尝试连接到Power BI时,我收到403 Forbidden响应。 var authenticationContext = new AuthenticationContext(“https://login.windows.net/” + Properties.Settings.Default.TenantID); var credential = new ClientCredential(clientId: Properties.Settings.Default.ClientID, clientSecret: Properties.Settings.Default.ClientSecretKey); var result = authenticationContext.AcquireToken(resource: “https://management.core.windows.net/”, clientCredential: credential); if (result == null) { throw new InvalidOperationException(“Failed to obtain the JWT token”); } string accessToken = result.AccessToken; string responseContent = string.Empty; […]

无法安装Microsoft Power Bi Postgre SQL连接器

我正在尝试使用Microsoft Power Bi连接到PostgreSQL数据库。 当我去获取数据时,它只是说连接器需要安装一个或多个附加组件才能使用它 我安装了Microsoft Power Bi版本:2.47.4766.801 64位(2017年6月)。 我已经安装了Npgsql 3.2.3。 我已经安装了VS Studio 2017社区,并使用VS Studio命令提示符将dll文件添加到程序集中。 我编辑了我的machine.config文件。 下面 我正在运行Windows 10,所以我已经安装了.NET framework 4.5。 6.我重新启动电脑,打开Power Bi并尝试再次连接到Postgre,我得到的信息是连接器需要安装一个或多个附加组件才能使用。 我的Power Bi中的跟踪器日志可以在这里找到: https://www.sendspace.com/file/vleze0 我怎样才能让这个东西起作用? 这让我疯狂! 谢谢