GAE:为什么对/ RPC2有一个持续的POST请求

时间:2012-11-25 00:13:24

标签: google-app-engine

我是谷歌应用程序引擎的新手,不是Python的新手,对我来说有一个非常令人困惑的问题。

首先,告诉你我的版本。

enter image description here

问题是当我运行开发服务器时,对/ PRC2有一个持续的POST请求,我不知道它来自哪里。

请参阅下面的屏幕截图。 enter image description here

我的main.py

from google.appengine.ext import webapp
import os
from handlers import MainHandler


CURRENT_VERSION_ID = os.environ.get('CURRENT_VERSION_ID', None)

if os.environ.get('SERVER_SOFTWARE', '').startswith('Google App Engine'):
    DEVELOPMENT = False
else:
    DEVELOPMENT = True


config = {
    'DEBUG': DEVELOPMENT
}


routes = [
    (r'/', MainHandler),    # Homepage
]

app = webapp.WSGIApplication(
    routes, debug=DEVELOPMENT, config=config
)

app.yaml

application: xxxxxxxxxxxx
version: 1
runtime: python27
api_version: 1
threadsafe: true

handlers:
- url: /static
  static_dir: static
- url: /.*
  script: main.app


libraries:
- name: webapp2
  version: "2.5.1"
- name: jinja2
  version: "2.6"

2 个答案:

答案 0 :(得分:1)

奇怪。尝试另一个端口,看看你是否保持这个奇怪的POST。或者在您的应用中投放帖子,查看请求中的内容,找出它的来源。

答案 1 :(得分:1)

您可能在XML-RPC应用程序正在寻找特定API的某个端口上启动dev_appserver。