【发布时间】:2021-09-30 17:10:40
【问题描述】:
如何在没有 Big Query 的情况下直接从 Power BI 插入 Google Firebase?我发现了一个线索,但我缺少细节。作为参考,请检查建议的第一种方法 here 用于将 Power BI 连接到 Firebase。它基于在 Power Query 编辑器中添加空白查询:
let
Source = Json.Document(Web.Contents("url_to_your_firebase_database")),
#"Converted to Table" = Record.ToTable(Source)
in
#"Converted to Table"
但是,我不知道“url_to_your_firebase_database”应该是什么。我什至不知道这种方法是假设实时数据库还是普通数据库?
作为回答这个问题的起点,我建议一条路径:
Firebase > Gear icon (second row, left upper corner) > Project Settings
我应该从那里获取哪些链接或 Web api 密钥来创建 PBI 连接?
【问题讨论】:
标签: json firebase powerbi powerquery