I am developing a Google App Engine REST service and I want to use oAuth 2.0 for authentication. I added the following code to my service methods to check for a valid user and it works in that it throws an exception when I am not authenticated.
try
{
final OAuthService oauth = OAuthServiceFactory.getOAuthService();
final User user = oauth.getCurrentUser();
}
catch (final OAuthRequestException e)
{
throw new RuntimeException(e);
}
Now I want to authenticate against this with command line programs that are written in Java and Python.
I have spent hours searching Google and StackOverflow both and I can't find a single lucid example of how to authenticate against my GAE application with a non-browser application that makes any sense. I found lots of examples on how to authenticate against Google's own API's but nothing about authenticating against my own Google App Engine application.
Can someone provide a instructions on how to authenticate against a Google App Engine application with either Java or Python?