Joshua Humphries

Results 433 comments of Joshua Humphries

In JSON `'\u0026' is the same as '&'; the former is unicode escaped. I dug a little bit: `grpcurl` is not doing any encoding explicitly, but it uses the `"encoding/json"`...

FYI, until this is fixed, that is still valid JSON and any/all consumers of it will know how to correctly unescape that character. So if you pipe the JSON to...

@lukaskollmer, that is the encoding for protos in JSON format: https://developers.google.com/protocol-buffers/docs/proto3#json 64-bit ints are formatted as strings, but accepted as either strings or numbers. The reason is that JS runtimes...

@jamisonhyatt, this is a problem in the Go protobuf runtime regarding how file descriptors that are compiled into your binary are "linked". They are linked purely by name. What that...

@tanjunchen, if you are using gogoproto (instead of the golang/protobuf library), then the issue you linked is most likely the underlying issue. Server reflection being coupled to the golang/protobuf library...

> Nothing is shown when I try to list packages or messages. @ohenrik, are you getting an error message? Or is it just showing nothing? If the latter and just...

@jhuggart, looks like the problem is in your dependency. You are importing the file as `"github.com/danielvladco/go-proto-gql/pb/graphql.proto"`. But when that other repo generated code for their proto, they gave the path...

@maxliu007, are you using server reflection? If so, then if the server knows about that message type, it should work. If you are not using server reflection, then you must...

@maxliu007, yes, grpcurl can handle `Any` messages. What do you get if you try using `grpcurl` to invoke the following RPC method, with the following payload? ```sh # add any...

@maxliu007, I would try the same `grpcurl` invocation to hit the reflection endpoint. If the server is not able to serve the descriptor for `utsv.event.api.v1.TicketType`, then I'm afraid this error...