在自定义域中部署Google Endpoint

时间:2013-09-04 07:18:00

标签: google-app-engine google-cloud-endpoints

将Google Cloud Endpoints与自定义域一起使用是否存在任何问题?

我使用它几个星期后,部署后它停止工作。我看这里,我发现this question说它还不允许。

但它在http://www.customdomain.com/_ah/api/app-id/v1 ...

上为我工作

2 个答案:

答案 0 :(得分:4)

如果您按照here概述使用App Engine对自定义域的内置支持,则预计不会有效。您可以关注this feature request以了解该功能的最新进展。

答案 1 :(得分:0)

现在,Google CloudEndpoints 2.0支持它

迁移到2.0版:

  • 更新您的依赖项以使用新工件。在Maven,这看起来 如下所示:

    com.google.endpoints endpoints-framework 2.0.0-beta.8

  • 删除旧的依赖项,即appengine-endpoints工件。

  • 更新项目web.xml文件中的API入口点:

    • 将所有出现的SystemServiceServlet重命名为EndpointsServlet。
    • 将路径/ _ah / spi / *的所有出现替换为新的所需路径/ _ah / api / *

请参阅:

https://cloud.google.com/appengine/docs/java/endpoints/migrating

https://code.google.com/p/googleappengine/issues/detail?id=9384