SylviaBABY commented on code in PR #6891: URL: https://github.com/apache/apisix/pull/6891#discussion_r854751272
########## docs/zh/latest/plugins/grpc-transcode.md: ########## @@ -75,14 +100,15 @@ protoc --include_imports --descriptor_set_out=proto.pb proto/helloworld.proto 然后我们可以将 `proto.pb` 的内容作为 proto 的 `content` 字段提交。 -由于内容是二进制的,我们需要先对其进行 base64 编码。这里我们用一个 Python 脚本来做。 +由于 proto 的内容是二进制的,我们需要使用以下 Python 脚本将其转换成 `base64`: Review Comment: ```suggestion 由于 proto 的内容是二进制的,我们需要使用以下 Python 脚本将其转换成 `base64` 格式: ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
