Questions tagged [google-plus-signin]

Google Sign-In is a secure authentication system which reduces the burden of login for your users, by allowing them to login with their Google account. To sign users into an app that integrates Google+ features, Google Sign-In helps with social scopes

Google Sign-In increases conversions by reducing the burden and friction of login. Ecspecially for mobile users, all while helping users keep their accounts secure. With minimal effort, user can add a trusted registration system that's familiar to users and consistent across devices. Google Sign-In lets users skip high drop-off registration forms and avoid having to remember yet another username and password. This makes registration faster and more secure, and reduces support costs for forgotten usernames and passwords.

By requesting social scopes through Google Sign In, your app can provide a social experience for your users through the use of the Google+ Profile and Social Graph APIs.

Steps to integrate Google+ Platform

276 questions
5
votes
0 answers

How can you get more than the default information from Google Sign In?

Using getBasicProfile(), google lets us get basic profile data. Name, profile picture, email. For example: var profile = googleUser.getBasicProfile(); console.log("ID: " + profile.getId()); console.log("Name: " +…
5
votes
4 answers

iOS Google Sign-in fetching user profile picture impossible?(NOT Google plus sign-in)

I'm trying to make google sign-in work in my app but have an issue. (NOT a google plus sign-in, I'm using google sign-in) I followed this link and it works. I get userID, user.authentication.idToken, user.profile.name, and user.profile.email. But I…
5
votes
0 answers

Why GoogleAuthUtil.getToken() method generate two type of tokens?

I am integrating google sign in my android app.I am using newly mentioned Google+ signin Api and am able to get user name ,email,profile photo for my app.But when i call the GoogleAuthUtil.getToken() with different parameters i get two kind of…
Lejin KR
  • 457
  • 1
  • 3
  • 14
5
votes
3 answers

How to get authorization code for GoogleAuthorizationCodeTokenRequest in Java?

HttpTransport netTransport = new NetHttpTransport(); JsonFactory jsonFactory = new JacksonFactory(); GoogleTokenResponse token; try { token = new GoogleAuthorizationCodeTokenRequest( …
user1834783
  • 51
  • 1
  • 2
4
votes
4 answers

Error 10 in ionic native google plus login

I am using ionic native google plus login but I am getting error 10 after doing the same. Below is my code :- doGoogleLogin(){ this.googlePlus.login({}) .then(res => { this.router.navigate(['./tabs']); this.userInfo =…
ShubhamVohra
  • 97
  • 1
  • 10
4
votes
0 answers

Google Sign in gives INTERNAL_ERROR = 8 for new user

When I try to sign-in using G+ on an android app for an new user who is not been signed in on device google account, I get an INTERNAL_ERROR with status 8 and mask stays for ever until user taps on masks. When we retry again for the same user i am…
4
votes
0 answers

TokenError: Code was already redeemed and TokenError: Bad Request - Passport Google OAuth 2

I have a pretty basic passport setup as you can see below. Every once in a while I get two different errors. TokenError: Code was already redeemed and TokenError: Bad Request for reasons I cannot seem to find. I've looked around a lot (1 week) for…
Chris
  • 193
  • 1
  • 9
4
votes
2 answers

Could not find any version that matches com.google.android.gms:play-services-plus:+

Trying to integrate login with google plus in my ionic project using the cordova-plugin-googleplus plugin by EddyVerbruggen. Without the plugin installed the project builds fine but once I install the plugin building fails and I get this error:…
Ingadi
  • 524
  • 6
  • 19
4
votes
1 answer

Google+ signin - handleSignInResult returns false after customizing signin button

I'm following the sample code given by Google to integrate Google plus with android. https://github.com/googlesamples/google-services/blob/master/android/signin/app/src/main/java/com/google/samples/quickstart/signin/SignInActivity.java That code…
Lak
  • 341
  • 1
  • 5
  • 21
4
votes
1 answer

How to get default Google+ button to android app

Hello I am trying to learn Google Sign In functionality in android. I did this and working fine according as expected.I'm following this tutorial. http://www.androidhive.info/2014/02/android-login-with-google-plus-account-1/ Here it is showing…
Lak
  • 341
  • 1
  • 5
  • 21
4
votes
3 answers

SignInButton in Fragment - and onClick is never called in MainActivity

I have successfully followed the guide Accessing Google APIs. After that I have decided to move some of the code into fragment:
Alexander Farber
  • 18,345
  • 68
  • 208
  • 375
4
votes
1 answer

"Unregistered Android application" text is displayed in User profile info permission dialog

I have integrated Google sign-in in my application. I am able to successfully login every time but when I have added new google account in the device and try to login with that, I see the attached pop up dialog. I don't understand why it says…
shakunthalaMK
  • 366
  • 1
  • 4
  • 18
4
votes
1 answer

Google or GooglePlus sign in for iOS Application

the requirement is to implement Sign In With Google Plus in iOS Application. I am going to ask an email, first name, last name, profile picture. I see that there is a Google Sign In and Google Plus Sign In. But which one should i use? I have also…
4
votes
0 answers

How to solve "Connection failed" in Google+ login in android?

Recently, I did a code on Google+ login. I need to allow Google+ login to a user from a page and pass the control to the next page using Intent. Heres what I did if (view == imageViewgoogleplus) { str_button_clicked = "googleplus"; …
Nevermore
  • 830
  • 2
  • 16
  • 40
4
votes
1 answer

Not able to get authorization sucess for https://www.googleapis.com/auth/plus.login scope permission

I am able to login for Google+ inside my iOS application. I am using the GoogleOAuth classes for that. But the problem is that i can't set scope https://www.googleapis.com/auth/plus.login for permission. If i try to set this scope then, i can't…
Anuj
  • 790
  • 3
  • 11
1 2
3
18 19