Giter Site home page Giter Site logo

eightyfour's Introduction

Eightyfour

Installation

Mix.exs:

def application do 
  [applications: [:eightyfour]]
end

defp deps do
  [{:eightyfour, "~> 0.1"}]
end

Add to your supervision tree:

worker(Eightyfour, [])

Usage

Config options:

config :eightyfour,
  credentials: "priv/tokens/google/token.json",
  private_key: "priv/tokens/google/token.key.pem",
  # find your view_id in your analytics url:
  # https://www.google.com/analytics/web/#management/Settings/a000w000pVIEW_ID/
  google_view_id: "XXXXXX",
  start_date: "2010-01-01",
  token_lifetime: 3600,
  token_provider: Eightyfour.AccessToken

Create a Google service account:

  • Go to https://console.developers.google.com/
  • APIs & auth -> Credentials
  • Add credentials -> Service account
  • We need both key types, so start with JSON
  • Save as token.json
  • Click the email address under Service accounts.
  • Generate new P12 key
  • Save as token.p12
  • Move tokens to priv/tokens/google under your otp_app.
  • openssl pkcs12 -in token.p12 -out token.crt.pem -clcerts -nokeys
  • openssl pkcs12 -in token.p12 -out token.key.pem -nocerts -nodes

Find your google service account's email:

Add your google service account's email to the Analytics account you want to track. Make sure that its only permissions are Read & analyze.

Query API examples

iex(1)> Eightyfour.Query.browsers(:yesterday)
%{rows: [[os: "Windows", browser: "Chrome", version: "46.0.2490.80", ...]]}

eightyfour's People

Contributors

tmjoen avatar

Watchers

Yiu Ming Huynh avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.