I am developing a RESTful API for my python GAE application, and now I am trying to find the best way to protect this API. I have my own membership / authentication mechanism in this application.
What is the best way to do this?
- with pairs of public / private keys
- becomes an OAuth provider.
- HTTP authentication (seems to me very weak)
- other??
source share