I have integrated Google Analytic in my NextJs app. How Can I get all data from Google Analytic using axios to make my own Dashboard?

Viewed 145

I am trying to make my own Dashboard using Google Analytics Data. Is there any Way to get all data from my integrated google api using axios or fetch in javascirpt ?

1 Answers

Yes, there is a way, here is the Analytics Data API and the Node.js docs

and you can use any http client for Node.js, I personally use and recommend Axios.

Please note that the Analytics Data API is an early preview version of the API and is subject to change.

Related