Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

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 4
v-lid-msft
Community Support
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,

 

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not 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.

 

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,

 

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

hI @v-lid-msft,

 

Unfortunately I have the same error.

 

Best regards,

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors