Forum Discussion
Power BI Desktop connect to data mobile from application
Hello,
I use Firebas for my mobile web applications and I wanted to connect with Power BI Desktop to the web app data. I could not connect Power BI to Firebase directly, so I went through Google Analytics except that unfortunately Power BI cannot read this data via Google Analytics. Anyone please have idea about that or have other solution ? Thank you.
Best regards,
4 Replies
- v-lid-msft
Community Support
Hi Anonymous ,
We can try to use the Web.Contents connector in blank query according to this similar thread:https://community.powerbi.com/t5/Desktop/Step-by-Step-process-for-loading-Firebase-Database-to-power-bi/td-p/221569
let Source = Json.Document(Web.Contents("url to firebase database")), #"Converted to Table" = Record.ToTable(Source) in #"Converted to Table"
Best regards,- AnonymousNot applicable
Hello v-lid-msft,
Thank you for your answer. I did what you proposed but I have this error :
"DataFormat.Error : Nous avons trouvé des caractères en trop à la fin de l'entrée JSON."
Have you any idea ?
Thank you.
- v-lid-msft
Community Support
Hi Anonymous ,
Could you please check if there are error when using the following query?
let Source = Json.Document(Web.Contents("url to firebase database")) in Source
Best regards,