I have created data set with user data type in google analytics. Through api i push internal data to data set. How can i bring data from data set to google analytics report?
Related
I am trying to get individual users activity using google analytics apis for GA4. I am able to send UserID in GA data and also able to see these activities on analytics reports but unable to fetch this data using analytics apis.
1. I want to know about GA Advertising Features Raw Data that can use in BigQuery 'Raw' Data.
In https://support.google.com/analytics/answer/2700409?hl=en,
you enable Google Analytics to collect data about your traffic via Google advertising cookies and identifiers, in addition to data collected through a standard Google Analytics implementation.
In https://support.google.com/analytics/answer/3437719?hl=en,
there are hits.publisher.adsenseBackfillDfp and hits.publisher.dfp. Do they relate about GA Advertising Features?
I've linked firebase analytics app to BigQuery and getting raw data under app_events and app_events_intraday tables.
Our major requirement behind using BigQuery is to get analytics data that we get under Firebase analytics dashboard e.g. active_users, new users, audience geo locations and so on.
We can get these kinds of data using GA REST API for web applications but here we are using firebase app for mobile application and we came to know that BigQuery is the only option to get analytics data.
Can I get google analytics historic data like I get it on Firebase analytics dashboard?
Also, I get this data by downloading CSV from the same dashboard but that is a manual approach and I am looking to automate it.
Please acquaint me with the right approach to get analytics data for firebase app.
Thanks!
Is there any way i can query in my app for data from the analytics tab of dashboard?
For example:
ref.on("value", function(dashboard) {
console.log(dashboard.concurrentUsers)
});
From the "dashboard.concurrentUsers" in your question, it looks like you're trying to get the data from the Analytics tab of your dashboard.
As of Oct/Nov 2020 there is an Analytics Data API that you can use to run Analytics reports and retrieve data
You can also enable the BigQuery integration. Doing this means that all Google Analytics for Firebase events from that moment on will be written to BigQuery, where you can query them. This is the raw data, the events written by your apps, and not the aggregated data that you find in the dashboard.
Is there any way i can query in my app for data from the analytics tab of dashboard?
For example:
ref.on("value", function(dashboard) {
console.log(dashboard.concurrentUsers)
});
From the "dashboard.concurrentUsers" in your question, it looks like you're trying to get the data from the Analytics tab of your dashboard.
As of Oct/Nov 2020 there is an Analytics Data API that you can use to run Analytics reports and retrieve data
You can also enable the BigQuery integration. Doing this means that all Google Analytics for Firebase events from that moment on will be written to BigQuery, where you can query them. This is the raw data, the events written by your apps, and not the aggregated data that you find in the dashboard.