We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
normal proto:
41 service Greeter {¬ 42 // Sends a greeting¬ 43 rpc SayHello (HelloRequest) returns (HelloReply) {¬ 44 option (google.api.http) = {¬ 46 post: "/Action/2017-01-01"¬ 47 body: "*"¬ 48 };¬ 49 }¬
For me, I need change the post: "/Action/2017-01-01" to post: "/{{Action}}/{{Version}}"
post: "/Action/2017-01-01"
post: "/{{Action}}/{{Version}}"
which Action and Version is http header.
The text was updated successfully, but these errors were encountered:
I think this sort of change would require a change in the http<=>proto spec. Please feel free to open an issue in that repo and CC me.
Sorry, something went wrong.
No branches or pull requests
normal proto:
For me, I need change the
post: "/Action/2017-01-01"
topost: "/{{Action}}/{{Version}}"
which Action and Version is http header.
The text was updated successfully, but these errors were encountered: