ImportError: No module named appengine

ImportError: No module named appengine

按照发帖时Google的example code,应用引擎客户端的OAUTH2修饰应该按如下方式导入:

from oauth2client.appengine import OAuth2Decorator

尝试导入该模块会导致以下日志错误:

from oauth2client.appengine import OAuth2Decorator

ImportError: No module named appengine

Google 已移动模块但尚未更新其示例代码。

现在正确的导入是:

from oauth2client.contrib.appengine import OAuth2Decorator

(请注意 contrib 模块。许多相关模块也位于此处。)