从这里做完所有事情后,http://code.google.com/appengine/docs/python/tools/appstats.html我会得到
<class 'google.appengine.api.users.NotAllowedError'>:
Traceback (most recent call last):
File "/base/python_runtime/python_lib/versions/1/google/appengine/ext/appstats/ui.py", line 324, in <module>
main()
File "/base/python_runtime/python_lib/versions/1/google/appengine/ext/appstats/ui.py", line 320, in main
util.run_bare_wsgi_app(app)
File "/base/python_runtime/python_lib/versions/1/google/appengine/ext/webapp/util.py", line 116, in run_bare_wsgi_app
result = application(env, _start_response)
File "/base/python_runtime/python_lib/versions/1/google/appengine/ext/appstats/ui.py", line 308, in __call__
users.create_login_url(os.getenv('PATH_INFO', '')))])
File "/base/python_runtime/python_lib/versions/1/google/appengine/api/users.py", line 256, in create_login_url
raise NotAllowedError尝试访问myapp.apppot.com/_ah/stats或仅访问myapp.apppot.com/stats/时
发布于 2011-11-16 07:18:42
很可能你创建的应用程序的身份验证设置为只允许来自你的Google Apps域的用户,但你正在尝试通过appspot.com子域访问appstats。请在自定义域上使用你的应用的URL重试。
https://stackoverflow.com/questions/8137479
复制相似问题