Hi,
I'm GAE newbie. I'm trying to implement a RESTful API for a python based backend. I'm reading the docs and here is what I learnt.
1. GAE recommends using cloud endpoints which originally uses protoRPC to expose models via APIs.
2. This means models need to be converted to RPC messages for communicating with the API.
3. Use a REST based API which will enable directly manipulating the model entities via API.
Here is my question, without using external third party libraries, how do you create a REST based APIs?
Regards,
Pratibha