classEchoRequest(messages.Message):message=messages.StringField(1)classEchoResponse(messages.Message):"""A proto Message that contains a simple string field."""message=messages.StringField(1)ECHO_RESOURCE=endpoints.ResourceContainer(EchoRequest,n=messages.IntegerField(2,default=1))
请注意,如果请求正文中未显示参数(例如在 GET 请求中),那么您可以省略该请求的 Message 类,而只需使用值 message_types.VoidMessage。
@endpoints.method(# This method takes a ResourceContainer defined above.ECHO_RESOURCE,# This method returns an Echo message.EchoResponse,path="echo",http_method="POST",name="echo",)defecho(self,request):
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["很难理解","hardToUnderstand","thumb-down"],["信息或示例代码不正确","incorrectInformationOrSampleCode","thumb-down"],["没有我需要的信息/示例","missingTheInformationSamplesINeed","thumb-down"],["翻译问题","translationIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2025-04-02。"],[[["An API is an RPC service with remote methods accessible to external clients, requiring a service class that subclasses `remote.Service`."],["Each API method needs `Message` classes defined for both incoming requests and outgoing responses to properly map data, though these `Message` classes are not part of the exposed API."],["If requests have path or query string arguments, a `ResourceContainer` class should be used instead of a simple `Message` class for data mapping."],["To create an API, you must decorate a subclass of `remote.Service` with `@endpoints.api`, define `Message` or `ResourceContainer` classes for requests and responses, and decorate the method with `@endpoints.method`."],["The API's name and version, specified in the `@endpoints.api` decorator, are incorporated into the API's URL path, allowing for version management."]]],[]]