this is the error response we are getting:
{ "error": { "errors": [ { "domain": "global", "reason": "authError", "message": "Invalid Credentials", "locationType": "header", "location": "Authorization" } ], "code": 401, "message": "Invalid Credentials" } }
which doesn't make sense as we are able to obtain the access token without any problem.
Are you using a client library?
Are you passing the access token in the header? What does the http
request look like?
How have you configured acc, for a web app or an installed app?
Does the access token not work when you grant access or when you use
the refresh token to get a new access token?
Does everything work through the OAuth 2.0 playground:
https://code.google.com/oauthplayground/
There was a bug with the APIs console when creating a project. This
was fixed. Have you tried creating a new project and using new client
ID / secret?
-Nick