The GAE documentation states
here that for GAE a special version of the library is needed and points to a Google Code location where the most recent version of the library is 1.2 Since then the library has migrated to
github and the most recent general version is 1.4 No mention for a GAE version in github.
As I moved to the latest google appengine version SDK (1.9.19) I now see the following error in my dev server logs:
File “…..", line 8, in <module>
from apiclient.errors import HttpError
File "apiclient/errors.py", line 27, in <module>
from oauth2client.anyjson import simplejson
ImportError: No module named anyjson
A quick look at the latest google-api-python-client shows that this code is rewritten. I assume that the error is due to GAE moving to a new version of oauthclient2
Has anybody else faced this issue? Any workarounds? Is google-api-python-client-1.4 compatible with GAE?