我只是想在谷歌应用引擎中运行 hello world 程序。但是当我尝试在浏览器上运行该应用程序时,我收到 500 服务器错误。我尝试重新安装 GAE 应用程序引擎启动器和 python 2.7.5。但没有运气!
这是我的hello.py
import webapp2
class MainPage(webapp2.RequestHandler):
def get(self):
self.response.headers['Content-Type'] = 'text/plain'
self.response.write('Hello, World!')
app = webapp2.WSGIApplication([
('/', MainPage),
], debug=True)
应用程序.yaml
application: silent-blend-359
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /.*
script: hello.application
日志很大所以我把它贴在这里http://paste.ubuntu.com/6195427/
解决了
我正在使用代理连接到互联网。刚刚禁用了代理,瞧!问题解决了!