1

I want to track which resources are popular using the data from google analytics. Is this possible with google analytics?

  • 1
    Duplicate of this question: https://stackoverflow.com/questions/8464863/is-there-a-google-analytics-like-solution-to-track-rest-calls-to-a-web-service – Jurgen Strydom Mar 22 '19 at 11:02

1 Answers1

0

Is there a specific reason you would like to use google analytics?

You can instead log it to a log file with the python logging module.

You can also write it to a database (use FireBase for free if you are only counting).

Alternatively see this SO question.

Jurgen Strydom
  • 3,540
  • 1
  • 23
  • 30