rpcxio / rpcx-gateway

http gateway for rpcx services. Clients in any programming languages can call them
Apache License 2.0
203 stars 40 forks source link

可以在proto协议中指定http路径吗? #29

Open hankeyyh opened 7 months ago

hankeyyh commented 7 months ago

类似grpc-gateway,在定义method时指定http路径,请求时不需要通过header设置service/method,直接请求对应的URL path即可。这样感觉更方便些

rpc Echo(StringMessage) returns (StringMessage) {
  option (google.api.http) = {
    post: "/v1/example/echo"
    body: "*"
  };
}