Skip to content

Instantly share code, notes, and snippets.

@mtowers
Last active February 24, 2022 17:19
Show Gist options
  • Save mtowers/5986576 to your computer and use it in GitHub Desktop.
Save mtowers/5986576 to your computer and use it in GitHub Desktop.
Google Analytics Website Visitor Count Widget for Dashing with OAuth2 Authentication

Description

A Dashing widget for displaying the number of visitors to your website over a specified timeframe, as reported by Google Analytics

screen shot

Dependencies

google-api-ruby-client

Add it to dashing's gemfile:

gem 'google-api-client'

and run bundle install.

Usage

To use this widget, you'll first need to set up a Google API project and attach it to the Google Analytics profile you wish to monitor.

1. Create and download a new private key for Google API access.

  1. Go to https://code.google.com/apis/console
  2. Click 'Create Project'
  3. Enable 'Analytics API' service and accept both TOS's
  4. Click 'API Access' in the left-hand nav menu
  5. Click 'Create an OAuth 2.0 Client ID'
  6. Enter a product name (e.g. Dashing Widget) - logo and url are optional
  7. Click 'Next'
  8. Under Application Type, select 'Service Account'
  9. Click 'Create Client ID'
  10. Click 'Download private key' NOTE: This will be your only opportunity to download this key.
  11. Note the password for your new private key ('notasecret')
  12. Close the download key dialog
  13. Find the details for the service account you just created and copy it's email address which will look something like this: 210987654321-3rmagherd99kitt3h5@developer.gserviceaccount.com - you'll need it in your ruby code later

2. Attach your Google API service account to your Google Analytics profile

Note: you will need to be an administrator of the Google Analytics profile

  1. Log in to your Google Analytics account: http://www.google.com/analytics/
  2. Click 'Admin' in the upper-right corner
  3. Select the account containing the profile you wish to use
  4. Select the property containing the profile you wish to use
  5. Select the profile you wish to use
  6. Click the 'Users' tab
  7. Click '+ New User'
  8. Enter the email address you copied from step 13 above
  9. Click 'Add User'

3. Locate the ID for your Google Analytics profile

  1. On your Google Analytics profile page, click the 'Profile Settings' tab
  2. Under 'General Information' copy your Profile ID (e.g. 654321) - you'll need it in your ruby code later

4. Start coding (finally)

  1. Copy the visitor_count.rb file in to your dashing jobs\ folder.
  2. Update the service_account_email, key_file, key_secret and profileID variables
    service_account_email = '[YOUR SERVICE ACCOUTN EMAIL]' # Email of service account
    key_file = 'path/to/your/keyfile.p12' # File containing your private key
    key_secret = 'notasecret' # Password to unlock private key
    profileID = '[YOUR PROFILE ID]' # Analytics profile ID.
  1. Add the widget HTML to your dashboard
    <li data-row="1" data-col="1" data-sizex="1" data-sizey="1"> 
        <div data-id="visitor_count" data-view="Number" data-title="Visitors This Month"></div> 
    </li>

Notes

If you want to modify this plugin to pull other data from Google Analytics, be sure to check out the Google Analytics Query Explorer.

<li data-row="1" data-col="1" data-sizex="1" data-sizey="1">
<div data-id="visitor_count" data-view="Number" data-title="Visitors This Month"></div>
</li>
require 'google/api_client'
require 'date'
# Update these to match your own apps credentials
service_account_email = '[YOUR SERVICE ACCOUNT EMAIL]' # Email of service account
key_file = 'path/to/your/keyfile.p12' # File containing your private key
key_secret = 'notasecret' # Password to unlock private key
profileID = '[YOUR PROFILE ID]' # Analytics profile ID.
# Get the Google API client
client = Google::APIClient.new(:application_name => '[YOUR APPLICATION NAME]',
:application_version => '0.01')
# Load your credentials for the service account
key = Google::APIClient::KeyUtils.load_from_pkcs12(key_file, key_secret)
client.authorization = Signet::OAuth2::Client.new(
:token_credential_uri => 'https://accounts.google.com/o/oauth2/token',
:audience => 'https://accounts.google.com/o/oauth2/token',
:scope => 'https://www.googleapis.com/auth/analytics.readonly',
:issuer => service_account_email,
:signing_key => key)
# Start the scheduler
SCHEDULER.every '1m', :first_in => 0 do
# Request a token for our service account
client.authorization.fetch_access_token!
# Get the analytics API
analytics = client.discovered_api('analytics','v3')
# Start and end dates
startDate = DateTime.now.strftime("%Y-%m-01") # first day of current month
endDate = DateTime.now.strftime("%Y-%m-%d") # now
# Execute the query
visitCount = client.execute(:api_method => analytics.data.ga.get, :parameters => {
'ids' => "ga:" + profileID,
'start-date' => startDate,
'end-date' => endDate,
# 'dimensions' => "ga:month",
'metrics' => "ga:visitors",
# 'sort' => "ga:month"
})
# Update the dashboard
# Note the trailing to_i - See: https://github.com/Shopify/dashing/issues/33
send_event('visitor_count', { current: visitCount.data.rows[0][0].to_i })
end
@dyscribe
Copy link

dyscribe commented Nov 3, 2014

I found a solution that worked for my on the invalid_grant issue: https://stackoverflow.com/questions/26142850/gem-error-on-remote-machine/26722989#26722989

@jbayntun
Copy link

jbayntun commented May 4, 2015

We had an issue on line 42 of visitor_count.rb. Changed it to:

'metrics' => "ga:visits", # was visitors before

and now it works

@capncodewash
Copy link

@jbayntun - it seems like that line should now be:

'metrics' => "ga:sessions",

Also, I was confused as to how to find the profile ID. For reference, it's not the same as the tracking code. You need to go to Admin ==> [[select the profile from the right, under the 'View' header]] ==> View Settings.

The ID displayed next to 'View ID'. It will be an integer.

Also, I got stuck a few times and wanted to debug the data coming back from GA. Insert this line before the send_event line to print the GA data to the shell:
puts visitCount.data.inspect

This lets you see 403 (etc.) errors more easily.

@ivanderos
Copy link

I have some problem but, I will solve it.

@CharlesSellers
Copy link

We tried to set this up recently and there is an issue with the new gem not being supported. After hunting around this appeared to fix this issue. I included the following code within our Gemfile.

gem 'google-api-client', '<0.9'

Credit to this thread (not related to dashing) gimite/google-drive-ruby#167

@mhetreramesh
Copy link

Great plugin and write up!

@Mike781
Copy link

Mike781 commented Dec 1, 2016

No idea what happened here, I tried this and got this error when i try to start Dashing:

scheduler caught exception:
Authorization failed. Server message:
{
"error" : "invalid_client",
"error_description" : "The OAuth client was not found."
}

Pretty sure I followed the instructions to the letter, so I have no idea.

@Mike781
Copy link

Mike781 commented Dec 1, 2016

Ignore that! I figured it out. It was a typo on my part.

@garyhoulihan
Copy link

Hi all, I have a quick question on this and the .json file I've generated from step 12.
The "key secret" data I don't seem to have..
I have:
"project_id": "
"private_key_id": "
"private_key":
"client_email":
"client_id":
"auth_uri":
"token_uri":
"auth_provider_x509_cert_url":
"client_x509_cert_url":

Is my Key Secret one of the above?

Copy link

ghost commented Jan 26, 2017

I believe, that when you use the option of authentication with .json file you are not ought to use "key secret" file to see the key, where as you use "key secret" which is just and with no hesitation 'notasecret' when choosing the option .p12 authentication.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment