Closed henry-infevo closed 2 years ago
It means that you used a type, that may not work reliably as a query param (tho most cases work fine, except nesting at this point). That said assuming based on you going for a POST request, you probably want the params in the body and are confused why you're getting this error.
the pb annotations actually make you specify what goes in the body explicitly. add body: "*"
(pretty sure its quoted)
option (google.api.http) = {
post: "an-endpoint"
body: "*"
};
Yeah, I debugged truss and found the issue as your suggestion.
Thank @zaquestion
I got the warning below when trying to generate
*.proto
file.And I get compiled error on generated file.
*.pb.go
My protobuf message look like this