0

I have a Firebase project which is initialized to capture some analytics from a mobile app.

I would like to get a specific chart from Analytics and embed it in my back-end website. Is this possible ? If not, Is it possible to create a live database from the Analytics in real time and access this database from my website ?

Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807
SoliQuiD
  • 2,093
  • 1
  • 25
  • 29

1 Answers1

0

There is no direct API to get the charts from the Google Analytics for Firebase console into your own web site. See How to export Firebase analytics data.

The simplest two workarounds are:

  1. To export the data from the Firebase console to CSV, by clicking on the overflow menu in the top right and clicking Download CSV.
  2. Connect your Firebase analytics data to BigQuery, so you can directly query it from your own web site.
Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807
  • FTR, linking to BigQuery will require paying for the account, if you're using a free tier. Thanks anyway – SoliQuiD Jun 27 '18 at 14:04