It seems that the support for the file upload with gRPC & OpenAPI generator is not very well. 1. The `google.api.http` has no annotation for file uploading... 2. The gRPC client streaming for file uploading is complicated... Need to find a way to make it work because we need to send `FileBox` to our server... ## Related Links - https://github.com/grpc-ecosystem/grpc-gateway/issues/410 - https://github.com/grpc-ecosystem/grpc-gateway/issues/500 - https://github.com/grpc/grpc-web/issues/517#issuecomment-629609101 - https://github.com/grpc-ecosystem/grpc-gateway/issues/1666 - [StackOverflow: gRPC + Image Upload](https://stackoverflow.com/questions/34969446/grpc-image-upload) - https://github.com/grpc-ecosystem/grpc-gateway/pull/2258 - [gRPC File Upload With Client Streaming](https://www.vinsguru.com/grpc-file-upload-client-streaming/)
It seems that the support for the file upload with gRPC & OpenAPI generator is not very well.
google.api.httphas no annotation for file uploading...Need to find a way to make it work because we need to send
FileBoxto our server...Related Links