grpcgateway icon indicating copy to clipboard operation
grpcgateway copied to clipboard

A PoC to derive REST services from GRPC specifications

Results 9 grpcgateway issues
Sort by recently updated
recently updated
newest added

This is a first sketch to adapt the implementation to allow passing through selected headers from REST calls to the corresponding GRPC calls. This PR introduces the environment variable `REST_TO_GRPC_PASS_THROUGH_HEADERS`...

Hello, my service needs to support CORS. how can I add http headers to the http response? Thanks, Einav

* update GrpcGatewayHandler to use a single supportsCall method to both match a URI and extract parameters from it in one pass * update GatewayGenerator to support the new code...

We compile our protobufs using ScalaPB with the `flatPackage` option. This lib doesnt seem to support that, and instead nests the files under the name of the protobuf file. I...

Hi! What do you thing about this PR? I know that there is my PR but it's too big i guess https://github.com/btlines/grpcgateway/pull/17 I decided to split that PR with small...

Hello! I've added sbt plugin for this library for easy usage. What do you think?

Thanks for putting the effort in the Scala gRPC ecosystem! I was just about to try generating the REST gateway when I ran into the following. I have something like...

In v0.0.8 named slots are not extracted from "/v1/messages/{message_id}-like URL templates. Instead in the generated handler: * an incoming URI (e.g. "/v1/messages/123") is literally compared with "/v1/messages/{message_id}" * even if...

Would it be possible to allow for binding both Grpc and REST servers on the same port, routing the requests based on the `content-type` header (similarly to what they do...