我是GAE开发的新手,我刚刚创建了一个简单的API,但我无法运行我的应用,因为我不断收到错误在应用中找不到任何URLMap条目构造
这是 app.yaml 文件
application: gw2
version: 1
runtime: python27
threadsafe: true
api_version: 1
handlers:
- url: /_ah/spi/.*
script: main.api_server
libraries:
- name: pycrypto
version: latest
- name: endpoints
version: 1.0
这是我的 main.py 文件,其中我已声明 api_server 变量
from google.appengine.ext import endpoints
import api
api_server = endpoints.api_server([api.GW2Service])
GW2Service 继承自 remote.Service
编辑我使用命令行工具(Ubuntu 12.04)
哪里出错?
提前致谢。 Eric~H
答案 0 :(得分:1)