我在 appengine 上做一个应用程序,它在那里工作得很好。我在 facebook 画布 url http://xx.appspot.com/yyy/上有应用程序的 URL (带有斜杠),当从http 调用应用程序时: //apps.facebook.com/appname我得到
405 Method Not Allowed 该资源不允许使用 POST 方法。
class MainHandler(webapp2.RequestHandler): def get(self): #do stuff here def post(self): pass
app = webapp2.WSGIApplication([ ('/yyy/', MainHandler), ('/',anotherHandler),
],调试=真)
注意:appengine 日志中没有这样的错误。