I\'m trying to set up an analytics dashboard of my site for my leadership to view site usage. I don\'t want them to have to have a google account or to add them individual t
You have (below) without single quotes
gapi.analytics.auth.authorize({ serverAuth: { access_token: token } });
but for it to work, as per their documentation you need to put single quotes around serverAuth and access_token.
serverAuth
access_token
gapi.analytics.auth.authorize({ 'serverAuth': { 'access_token': token } });