views:

100

answers:

4

Hi;

Is it possible to use Google Accounts for authentication in your application if you not use App Engine? Is this service is only for those applications which run in GAE?

Thanks.

+1  A: 

Stackoverflow is a good example. You can use OpenID provided by Google to sign in.

Luno
This was in my mind too. But I was thinking if there is another way. Thanks for reply.
Tahir Akram
+4  A: 

Yes it is possible to use Google accounts for authentication:

OpenID API Documentation

tosh
O yes, I got clicked.
Tahir Akram
A: 

You can also download the chromium os source and compile pam_google.

s00th
A: 

You're looking for OAuth, and more precisely 3-legged OAuth.

Google supports the OAuth protocol for authorizing web applications accessing their users' Google services.

Your app will need to be registered with Google, but the process is relatively painless.

Have fun :)

J

Cloudbreak NZ
OAuth is not an authentication protocol, it is an authorization delegation protocol.
Jonathan