I am using Google Endpoint in Python. Now I want to add a push queue but I do not want anyone has the right to trigger this queue. For example, I create a queue when user call one api.
endpoints.method(..,path='conference',http_method='POST',name='createConference') def createConference(self, request): ... taskqueue.add(url="/task/sendEmail", params={"conference": conference})
... Now, how can I define the handler for this queue and nobody can call it by api? I got stuck here several days, please give me some hints for guiding me to be out here. Thanks