Google Endpoints GET request URL parameters [Python]
问题 I am currently working on a small project where I need to write a GET handler. I am working from the Echo example provided in the endpoints documentation. I have my resource container: GET_EMAIL_RESOURCE = endpoints.ResourceContainer( message_types.VoidMessage, i = messages.IntegerField(1, default = 1) ) And I have my handler: @endpoints.method( GET_EMAIL_RESOURCE, EchoResponse, path='echo/getEmails/{i}', http_method='GET', name='echo_get_emails' ) def echo_get_emails(self, request): if