I am creating endpoint APIs using GAE Cloud Endpoints Framework
My current app.yaml Endpoint Handler looks like
- url: /_ah/spi/.*
script: main.application
and the api call look like
GET http://localhost:8080/_ah/api/proj_name/v1/api_name
Is it possible to remove the _ah part of the API url?
If yes, How?