protoRPC:返回 pub/sub 消息 python

protoRPC: returning a pub/sub message python

如何通过 protoRPC return PubsubMessage

Pub/sub 消息 例如,

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

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

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

可以查看Google协议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/