Are there any api for dashboard analytics data?

Is there a way I can request data from the analytics tab in the dashboard in my application?

For instance:

ref.on("value", function(dashboard) { console.log(dashboard.concurrentUsers) }); 
+12
source share
1 answer

From "dashboard.concurrentUsers" in your question, it looks like you are trying to get data in the " Analytics" tab in your panel.

There is no public API for retrieving analytic data, although you can manually export data to a CSV file from the Firebase console.

What you can do is enable BigQuery integration . This means that all Google Analytics events for Firebase from now on will be recorded in BigQuery, where you can query them. This is the raw data, events recorded by your applications, and not the aggregated data that you find on the toolbar.

+16
source

Source: https://habr.com/ru/post/1241855/


All Articles