2

在端点 1.0 上一切都很好。我已经完成了迁移2.0 google docs 的所有步骤。成功更新我的项目,并且可以运行端点 api explorer。但是当我尝试在本地(localhost:8080/_ah/api/explorer)运行端点 api explorer 时,它会将我重定向到 google api explorer。这是我的 app.yaml

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

handlers:
- url: /static
  static_dir: static
- url: /
  static_files: static/index.html
  upload: static/index\.html
  secure: always
- url: /js
  static_dir: static/js
- url: /partials
  static_dir: static/partials
- url: /.*
  script: main.app
- url: /_ah/api/.*
  script: main.app
libraries:
- name: ssl
  version: latest

- name: pycrypto
  version: latest

- name: numpy
  version: "1.6.1"
inbound_services:
- mail

builtins:
- remote_api: on

env_variables:
  ENDPOINTS_SERVICE_NAME: echo-api.endpoints.graphofgroups.appspot.com
  ENDPOINTS_SERVICE_VERSION: [2017-04-06r0]
4

1 回答 1

0

重定向到 Google APIs Explorer 是正确的行为,但鉴于您使用 HTTP 作为 localhost,它会阻止您查看您的 API。

我发现了两个修复:

  1. 有关如何重新启动浏览器以允许此内容的详细信息,请参阅此链接。
  2. 如果您使用的是 Chrome,请单击地址栏中的盾牌并选择“加载不安全脚本”。(见下文)

在此处输入图像描述

于 2018-04-05T21:45:41.950 回答