I'm trying to figure out how to implement the following authentication flow:
- The user accesses a web application (most likely to be written using Ruby on Rails) and authenticates (e.g., username/password).
- The client consumes data via AJAX provided by a RESTful API built on Google App Engine (Python, webapp2).

Requirements:
- Only users authenticated in the web application (Rails) should be able to access the API hosted on App Engine.
- Users can have different roles in the web application (Rails), and the API (App Engine) needs to know what roles are associated to the given user to restrict access to certain data.
- The client should be able to call the API (App Engine) directly via AJAX, without routing all requests through the web application (Rails).
I'm looking for suggestions on how to implement such workflow. Should I use OAuth (or OAuth2) for accessing the API? Should the OAuth provider live on App Engine and the web application (Rails) ask the API for a token on behalf of the user? If so, what is the best way to allow only the web application (Rails) to request OAuth tokens? Or should I consider a completely different strategy?
Any suggestions are greatly appreciated. I'm also looking for suggestions of libraries to implement OAuth in the context above.