Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm planning to start my first project using GAE (Google App Engine).

I would like to create a software that is web-service oriented and works with the google authentication mecanisms.

However, as I understand it, the code sample provided in the linked page redirects the user to a login page.

I would like to authenticate a user without any web-based user interaction.

  1. The user launches a local executable. Something like: authenticate.exe mylogin mypassword
  2. authenticate.exe communicates the login and password to the GAE application using a web-service based communication.
  3. The GAE application tries to authenticate the user and returns the result to authenticate.exe

Is there any official documentation on how to achieve that reliably ? Preferably in Java.

Thank you.

share|improve this question

1 Answer

up vote 1 down vote accepted

Try using ClientLogin: http://code.google.com/apis/accounts/docs/AuthForInstalledApps.html

The docs are for Google APIs but should work also with AppEngine URLs.

Here is an example of using ClientLogin with AppEngine. Code is Python but you should understand the flow: http://dalelane.co.uk/blog/?p=303

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.