('Unexpected credentials type', None, '

2019-02-13 21:19发布

问题:

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?

回答1:

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:

Hope that helps!



回答2:

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

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