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 building an Android app as part of a client/server architecture, where my server will provide a service to the Android client. The server will not communicate with any Google server, but will need to authenticate the user via their gmail account. That is, the server needs to be sure that the http(s) requests coming from the phone are indeed from the person with that specific gmail account.

I was looking into Android's C2DM framework, which I can certainly use for passing service-related data back and forth, but how can I use Google account authentication between an Android phone and a third-party (non-Google) server?

Will Oath2.0 work for this, or is Oath2.0 only used for direct authentication between the phone and Google's services?

share|improve this question
1  
C2DM has been deprecated in favor of Google Cloud Messaging. See my related GCM question. – Jeff Axelrod Sep 12 '12 at 14:41

1 Answer

up vote 2 down vote accepted

You didn't mention which language code you're going to use in your server.

The easier way to use C2DM is inside Google App Engine which comes with native support for Android integrations with C2DM.

If that's not the case ( EX: youre using php in your own server ) I would take a look to AccountManager which can provides you the auth token ( the app-user must allow it ).

When registering a new device to your C2DM server you'll need the device to communicate also the token so you'll be able to know if the user is really owner of that gmail account through a connection between your server and Google Servers.

:)

share|improve this answer
1  
I don't see how the implementation language is important here--the question is about the technology and protocol, isn't it? From what I can tell, C2DM provides no mechanism for authenticating to Google accounts. – Jeff Axelrod Sep 12 '12 at 14:39

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.