gRPC + Image Upload
问题 I want to create a simple gRPC endpoint which the user can upload his/her picture. The protocol buffer declaration is the following: message UploadImageRequest { AuthToken auth = 1; // An enum with either JPG or PNG FileType image_format = 2; // Image file as bytes bytes image = 3; } Is this approach of uploading pictures (and recieving pictures) still ok regardless of the warning in the gRPC documentation? And if not, is the better approach (standard) to upload pictures using the standard