List the top pages for a website using Google Analytics. This is a base example that you could build off of to create lists on your website like, "Top Articles this Week", etc.
Install the required python libraries:
pip install google-api-python-client==1.2 pip install PyOpenSSL==0.13.1
Go to https://code.google.com/apis/console/ to get your API credentials.
- Click create project
- Click the on/off button next to "Analytics API" to turn on "Analytics API" service.
- Click on the "API Access" tab
- Click the "Create an OAuth 2.0 client ID" button
- Add a "Product name" and "Home Page URL" and then click next
- Select "Service Account"
- Click "Create client ID"
- Click the "Download private key" button
- Rename the file google-api-private-key.p12 and move it into the same directory as this script
- Make note of your service account email address (e.g. [email protected]). Log in to Google Analytics account and then give your service account email address read access to the web site property you want to use this script for.
- API Console
- Service Accounts
- Using OAuth 2.0 for Server to Server Applications
- Service Account Example
Before you run the script you'll need to get the property ID for the website you want to get top pages for. Login to Google Analytics and then view the analytics for the website you want the top pages for. The property ID will be the number after the "p" in the URL.
If the URL was https://www.google.com/analytics/web/?hl=en&pli=1#report/visitors-overview/a1212121w23232323p34343434/, then your profile ID would be 34343434.
Run the script:
python list_ga_top_pages.py --profile_id 34343434 \ --service_account_email [email protected] \ --start_date '2013-09-01' --end_date '2013-09-05' --filter '^/news/201*' --max_results 20