I have the attempted to use both a get method and a post method for a service, and only one outside the additional_bindings becomes available in the ESP.
// This RPC streams random numbers from the server.
rpc GenerateStream (GenerateRequest) returns (stream GenerateResponse) {
option (google.api.http) = {
get: "/v1/generate/stream/milliseconds/{milliseconds}"
additional_bindings {
post: "/v1/generate/stream"
body: "*"
}
};
}
If I try an additional_bindings with a get, this works as expected.
using version
gcr.io/endpoints-release/endpoints-runtime:1.15.0
I have the attempted to use both a get method and a post method for a service, and only one outside the additional_bindings becomes available in the ESP.
If I try an additional_bindings with a get, this works as expected.
using version
gcr.io/endpoints-release/endpoints-runtime:1.15.0