riok / Kreya

Kreya is a GUI client for gRPC and REST APIs with innovative features for environments, authorizations and more.

Home Page:https://kreya.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Does this support ANY protobuf type

banandh opened this issue · comments

Hi - I have a proto defined with ANY as type

message Request{
google.protobuf.Any request = 1;
}

message Response{
google.protobuf.Any response = 1;
}

How does this tool helps with customizing this ANY object in request? I see some limitations with other gRPC client tools, wombat supports any object?

Kreya supports the Any type out of the box. For example in a request:

"myAnyField": {
  "@type": "type.googleapis.com/google.protobuf.StringValue",
  "value": "fooBar"
}