All Questions
5 questions
1
vote
1
answer
986
views
Send REST request containing an enum (defined in RPC)
we have a delete-rpc request defined in a proto as
rpc DeleteTag(DeleteTagRequest) returns (DeleteTagResponse) {
option (google.api.http).delete = "/v2/tags";
}
message DeleteTagRequest {
...
0
votes
1
answer
86
views
Securing/sanitizing remote calls to server by untrusted clients
I'm building an API which will expose (among other things) the following calls:
Upload file to remote server.
Perform various computations (over some set of possible function) on remotely uploaded ...
1
vote
0
answers
240
views
RESTful service contracts
We are designing an application and want to use (micro)services. We think that it would be good to enforce the APIs and contracts between services.
Protobuf and similar technologies can do this, but ...
13
votes
4
answers
9k
views
IDL for JSON REST/RPC interface
We are designing a fairly complex REST API, in which most of the I/O are JSON encoded objects with a specific structure. One challenge we have found is to document the API in such a way that makes it ...
0
votes
1
answer
801
views
RPC for java/python with rest support, HTML monitoring and goodies
Here's my set of requirements: I'm looking for an RPC framework such as thrift, avro, protobuf (when adding services to it) which supports:
Easy and intuitive IDL. No serial numbers, no manual ...