我正在将以下POST请求发送到我的gRPC应用程序:
curl \
--request POST \
--header 'Content-Type: application/json' \
--data-raw '{
"mandatory-key1": "value1",
"mandatory-key2": {
"arbitrary-optional-key1": [
"b",
"c"
],
"arbitrary-optional-key2": [
"e"
]
}
}' \
'http://localhost:11000/MyEndpoint'
与mandatory-key-1
关联的值必须是非空字符串。与
mandatory-key-2
关联的值必须是一个映射,其中所有键都是字符串,所有值都是字符串列表。现在,我必须在gRPC原型文件中对该请求的数据结构进行建模。
我正在考虑做这样的事情:
message MyRequestData {
// pairs represents that map that the user will send in to the MyEndpoint.
map<string, string> pairs = 1;
}
但是该规范不够通用。我需要知道如何正确编写此规范。问题1:如何编写此规范,以便它接受值中的字符串以及字符串列表?
问题2:如何进行验证,以确保
pairs
具有密钥mandatory-key1
和mandatory-key2
而没有其他密钥?问题3:如何进行验证,以确保:
pairs
有键mandatory-key1
和mandatory-key2
,没有别的吗? pairs[mandatory-key1"]
是否具有非空字符串值? pairs["mandatory-key2"]
的值是的映射? 最佳答案
Protobuf不提供(所需的)验证。
使用protoc生成的源时,需要对验证进行编码。
Protobuf不直接支持重复的 map 值,但是您可以:
message Request {
string mandatory_key1 = 1;
map<string, Value> mandatory_key2 = 2;
}
message Value {
repeated string value = 1;
}
关于go - 如何在gRPC协议(protocol)中接受并验证此映射?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/63927159/