I am using Python / Twisted to make asynchronous HTTP calls in the Google+ API. Our client application passes through the user access_token, and we call the API call ...
https://www.googleapis.com/plus/v1/people/me/?%s&key=%s&
... where% s and% s are filled with a valid access_token and (presumably) a valid Simple API Key, respectively.
Everything worked fine yesterday. Today I continued to work on unit tests for this, when the API suddenly started returning:
{ "error": { "errors": [ { "domain": "usageLimits", "reason": "keyInvalid", "message": "Bad Request" } ], "code": 400, "message": "Bad Request" } }
useLimits, keyInvalid ... Ok, I get it. I seem to be out of use and they have invalid API keys from this account. Besides, I don’t ...
The “Courtesy limit” should be “10,000 requests / day,” but I only made a couple of hundred calls (according to Google’s usage graphs on Google) and I still see “0% used” on the quotas tab.
I would bring it directly to Google, but they seem to have abandoned their Google Group developers in favor of a discussion on Google+ that actually gets no answers.
Any help or guidance is greatly appreciated. Thanks!
source share