I use grpc-gateway to host an HTTP server out of my proto definitions. It works great overall.
However, for one special endpoint, instead of returning a value back, I want to do a 302 redirect to an image hosted in an s3.
If you want to return an error via grpc-gateway, you can return it like
nil, status.Error(codes.Unauthenticated, "Nope")
I wonder if there is something similar to do a 302 redirect?
As far as I get from this page it seems unlikely. I hope I overlooked something.