笔记:
我用谷歌搜索,并阅读了这些问题:

Cannot access API explorer on localhost

How to force loading dynamic, insecure content in Chrome?

和许多其他人,但他们没有解决我的问题。

问题:

我正在运行 MacOS 并在 Parallels 中运行我的开发 int Debian VM。
我使用以下命令启动开发服务器:
dev_appserver.py --clear_datastore --host 0.0.0.0 --admin_host 0.0.0.0 应用

我可以使用我的 Debian 机器 IP 从 MacOS 访问应用程序、端点、管理模块等。 http://10.211.55.6:8080/_ah/api/my-service/v1/api 等...一切正常,除了 Google API Explorer 外,一切正常。

当我尝试访问 http://10.211.55.6:8080/_ah/api/explorer 时,我按预期被重定向到 http://apis-explorer.appspot.com/apis-explorer/?base=http:///10.211.55.6:8080/_ah/api#p/ 并且我收到了上述问题中所述的 ssl 错误(再次如预期),但随后我又被重定向了几次并最终在 https://apis-explorer.appspot.com/apis-explorer/#p/

注意:由于重定向,我无法点击标题栏中的锁定图标

我已经尝试了几乎所有我能想到的方法,并且谷歌广泛地无济于事。希望有人可以帮助我,我怀疑这与在 VM 内运行的开发服务器有关,但我不确定。

最佳答案

当您在 chrome 中本地访问 api_explorer 时,地址栏的最右侧会出现一个盾牌图标。单击 ,然后选择加载不安全脚本,它将加载您定义的所有服务端点。 loading api_explorer locally

关于google-app-engine - Google API 资源管理器重定向到 https ://apis-explorer. appspot.com/apis-explorer/#p/,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33905961/

10-16 10:19