我想使用 Google App Engine 作为我的天气应用程序的代理。这是我将 helloworld.py 转换为这样做的尝试。
import webapp2
import urllib2
class MainPage(webapp2.RequestHandler):
def get(self):
self.response.headers['Content-Type'] = 'text/plain'
api_key = 'c6cxxx'
api_endpoint = 'https://api.forecast.io/forecast/'
url = api_endpoint + api_key + '/'
opener = urllib2.build_opener()
f = opener.open("[url]" + url + "[/url]")
self.response.write(f)
application = webapp2.WSGIApplication([('/', MainPage),], debug=True)
我得到的只是一台服务器 500 有没有办法测试 GAE 脚本?我该怎么做才能使这个简单的脚本工作?