0

如何通过protoRPC返回PubsubMessage

发布/订阅消息示例,

.{
  "data": string,
  "attributes": {
    string: string,
    ...
  },
  "messageId": string,
  "publishTime": string
}
4

1 回答 1

0

作为第一步,您必须使用 Cloud Pub/Sub 客户端库 (Python) 订阅 Cloud Pub/Sub 中的数据,然后根据主题创建订阅并订阅该主题。

您必须定义一个回调来处理每条收到的消息。{1}

您可以查看 Google Protocol RPC 的 Hello World 以将回调中收到的消息传递给 RPC 服务。{2}

{1}:https ://google-cloud-python.readthedocs.io/en/latest/pubsub/

{2}:https ://cloud.google.com/appengine/docs/standard/python/tools/protorpc/

于 2018-06-12T08:39:08.023 回答