14

I'm trying to get Google Analytics data with this guide: https://ga-dev-tools.appspot.com/embed-api/server-side-authorization/

def get_access_token(request):
    return {'access_t': ServiceAccountCredentials.from_json_keyfile_name(
        KEY_FILEPATH, SCOPE).get_access_token().access_token }

With the code above I'm trying to a create a function and return the access token to the context in my admin template.

However. I get this error I don't know what to do with:

('Unexpected credentials type', None, 'Expected', 'service_account')

What could be the issue here?

Urdro
  • 867
  • 2
  • 8
  • 11
  • 1
    What value do you have **KEY_FILEPATH** set to? It sounds like you haven't installed your credentials correctly. Go to the Google developer console and set up a service account and download the credentials. Remember to change the view ID to the view you add the service account to. – Matt Aug 02 '16 at 22:03

2 Answers2

31

I too was running in to this. The fix in my case was to use the correct json file. I needed to use the one that was saved when I created the service account key, not the one with the service account client:

developer console API key interface

Hope that helps!

Charles Brandt
  • 981
  • 10
  • 13
1

It seams like the sample in google-api-python-client has it right

google-api-python-client/tree/master/samples/analytics

mdob
  • 2,224
  • 3
  • 22
  • 25