List of URLs and Visits from the Google Analytics API

I want to show the number of visits to each article on my page. I am trying to download a list of URLs and visits from Google Analytics using the PHP class. I was looking for sample code, but no luck. I need a result with all single URLs and visits to those URLs. I found only samples in which people visited or visited a single URL. I need a list of urls and visits.

+4
source share
1 answer

Do you use google-api-php-client . It has a class "\ Google_AnalyticsService" for making analytics calls api. You can get your pages by setting the "sizes" of your request.

+1
source

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


All Articles