how to get grpc-web custom-error
Author: LeteongCreated Dec 22, 2020Updated Jun 19, 2026
example: golang: import (""google.golang.org/grpc/status"") if err != nil { s := status.Convert(err) for _, d := range s.Details() {......}
But I found error has only code and message, missing details, so grpc-web how to get error.details ?
Source: grpc/grpc-web