Reputation: 957
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?
Upvotes: 17
Views: 14303
Reputation: 2334
It seams like the sample in google-api-python-client has it right
google-api-python-client/tree/master/samples/analytics
Upvotes: 1
Reputation: 1087
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!
Upvotes: 30