inaxium

Results 2 issues of inaxium

grpcurl -d '{"content": "frank"}' -proto echo-grpc/api/echo.proto -insecure -v 35.204.67.35:443 api.Echo/Echo Work ``` package main import ( "golang.org/x/net/context" "google.golang.org/grpc" "google.golang.org/grpc/keepalive" "log" "test_grpc_connect/api" "time" ) func main() { var conn *grpc.ClientConn conn,...

Hello, In REST methods such as PUT, PATCH, and DELETE, it's common to identify the resource to be manipulated using /path/4711. I've tried the following approaches: /path/ /path/{id} /path/... However,...

question