Google AppEngine与Compute Engine进行通信

时间:2014-12-20 19:45:03

标签: php google-app-engine google-cloud-storage google-compute-engine

我希望能够将一个命令从Google AppEngine发送到我的计算引擎。

更具体地说,我想在我的计算引擎上安装pdftk,并能够通过我的Google App Engine将数据发送到计算引擎。

  • Google App Engine接收数据
  • Google App Engine将数据发送到Compute Engine
  • Compute Engine运行pdftk,创建PDF,可能会将其上传到Google Cloud Storage或将其发送回Google App Engine,Google App Engine会将其上传至
  • Google App Engine会向该文件发送临时公开链接。

我只是在弄清楚如何将我的AppEngine与我的计算引擎联系起来。

我希望能够在PHP中执行此操作。有人能指点我一些例子。我查看了所有API参考资料,但我真的不明白。

1 个答案:

答案 0 :(得分:1)

App Engine实例可以与任何两台服务器通过Internet相互通信的方式与计算引擎实例通信,例如,使用GET和POST http请求。

如果实例属于不同的项目,则需要为Compute Engine实例使用公共IP地址。有关详细信息,请参阅 Can Google App Engine make a http request to a Compute Engine instance within the same project without an external IP?