我有以下操作:
rpc PostWebhook (google.protobuf.Any) returns (google.protobuf.Any) {
option (google.api.http) = {
post: "/v1/webhook",
body: "*"
};
}
由于我的 HTTP 请求正文未知并且可能会更改,我如何检索整个 HTTP 请求正文,而不message
提前将请求正文声明为 protobuf?
我有以下操作:
rpc PostWebhook (google.protobuf.Any) returns (google.protobuf.Any) {
option (google.api.http) = {
post: "/v1/webhook",
body: "*"
};
}
由于我的 HTTP 请求正文未知并且可能会更改,我如何检索整个 HTTP 请求正文,而不message
提前将请求正文声明为 protobuf?