Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

User authentication through Google plus in android app

I am working with Android app. User authentication in app with three way. First is simple authentication done with query. Second with Facebook. It also done.

I am working on Google plus authentication. but I am not able find the proper document as provide in facebook app.

Can any one guide me for google plus authentication?

like image 501
user1635620 Avatar asked Jan 21 '26 07:01

user1635620


1 Answers

You might want to take a look at "Google Play Services" in the Android SDK (released on 09/26).

Google Play services is a platform delivered by the Google Play Store that offers integration with Google products, such as Google+ into Android apps. The Google Play services framework consists of a services component that runs on the device and a thin client library that you package with your app.

The following components are included in Google Play services v1 and corresponding client APIs are included in the client library:

  • OAuth 2.0 authentication
  • Google+ sign-in
  • Google +1 button

Here's the link to it on on Googles Developer site: https://developers.google.com/android/google-play-services/index

like image 175
kaderud Avatar answered Jan 23 '26 21:01

kaderud