I am having the url handler as below in my app.yaml
handlers:
- url: /_ah/spi/websiteapi/.*
script: Website.application
secure: always
But while accessiong the api using http://localhost:8080/_ah/api/websiteapi/v1/websites i am getting error as { "error": { "message": "BackendService.getApiConfigs Error" } }
Help me to configure mt url handler and the below setting works fine but i need to handle several scripts depending on the url.
- url: /_ah/spi/.*
script: Website.application
secure: always