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
7
votes
4 answers

Google sign in not working android?

So an issue my project has encountered is that the sign in through google does not work consistently. Ie, it works for my friend and not me from my computer, even though it worked for me yesterday before wiping my phone (phone got corrupted). Our…
Eric
  • 767
  • 1
  • 11
  • 25
7
votes
0 answers

'Unregistered Application' shown in Google+ sign in consent screen

I have made an Android application which is debug key signed (app-debug.apk) I have also created corresponding Android Client-ID on Google Dev Console with debug keystore key and correct package name. Still when I try to login into application,…
jay shah
  • 728
  • 4
  • 16
7
votes
5 answers

Undefined symbols for architecture x86_64: "_OBJC_CLASS_$_CMMotionManager", referenced from: objc-class-ref in GooglePlus(GPPSpamSignal.o)

Hello I have a project that some one has developed. It has G+, FB integration. When I get the project and try to run it, it gives me this error. How I can solve this? Please help me. Undefined symbols for architecture…
user1960169
  • 3,093
  • 10
  • 35
  • 54
6
votes
2 answers

Prompt for consent every time with google auth, Cordova + ionic 2

I'm using this Cordova GooglePlus Plugin to sign-in with Google accounts. The issue is that I'm only able to get the refresh token in the first request. I would like to have this token every time. I've read that adding prompt=consent setting would…
Artur Alkaim
  • 175
  • 10
6
votes
5 answers

Plus.PeopleApi.getCurrentPerson deprecated in Play services 8.4. How to get user's first name, last name and gender using GoogleSignInApi?

With Play services 8.4, the method getCurrentPerson is deprecated and I was using the PeopleApi to get user's first name, last name and gender. Can anyone tell me how to get the signed in user's info using another method?
6
votes
3 answers

Get person details in new google sign in Play Services 8.3

I'm trying to get a user's profile using the new Google Sign In API introduced in play services 8.3. Other than Display Name, Email and Id, I also need user's gender. Plus.PeopleApi.getCurrentPerson() is deprecated as per play services 8.3 and…
6
votes
1 answer

How can I use ASP.NET MVC Owin AccessToken in Google.Apis call?

I'm trying to use the AccessToken provided by Owin in Google.Apis requests but I'm receiveing the exception System.InvalidOperationException (Additional information: The access token has expired but we can't refresh it). My configuration of Google…
6
votes
2 answers

Logging in with G+ - why scope "plus.login" won't work alone?

I have gone through dozens of answers on the topic, followed the official quick start guide, and done all I could think of. I have set up my google developer console in all its parts, including setting right debug SHA1 keys for both OAuth and Public…
natario
  • 23,696
  • 13
  • 82
  • 148
6
votes
4 answers

How to change title of Google Plus Sign in button?

I was searching for solution but to my suprise nobody asked this question yet: How to change title of Google Sign In button? I was trying to: override title by setTitle: but didn't help. find "Sign in" string in Google Plus framework directory but…
Łukasz Szpyrka
  • 668
  • 1
  • 6
  • 23
6
votes
0 answers

Google+ multiple accounts issue on Android while sharing post

I've integrated Google+ successfully in my Android application by following the Google's tutorial at: https://developers.google.com/+/mobile/android/sign-in The problem I'm facing is with multiple accounts configured on my device, say Account A and…
Umair
  • 638
  • 8
  • 20
5
votes
3 answers

Laravel Socialite: Legacy People API has not been used in project

I have used Laravel 5.4 with socialite 3.0 for social login on my web application. But nowadays I got an error Legacy People API has not been used in project xxx. Then I have made some changes in a core file of socialite…
5
votes
1 answer

How to get Google sign-in working for Meteor on iOS?

I'm setting up a Meteor app and using Google sign-in for the first time. This works fine in the web-app version of the app. However, when building the app for iOS, this generates a problem. I do this: meteor run ios-device --mobile-server…
MastaBaba
  • 955
  • 1
  • 8
  • 27
5
votes
1 answer

Google SignIn: Unable to disconnect iOS app

I have implemented google SignIn in my iOS app and can login to google account for the first time. But when I logout and try to log back in, I get Account Permission screen as shown below with last user instead of SignIn screen. Below is the code…
niks
  • 636
  • 9
  • 26
5
votes
2 answers

Cannot get private birthday from Google Plus account although explicit request

I am trying to get the user's information, including gender and age, from its Google Plus account. Since these fields may be private, I thought that requesting them explicitly would solve the problem. However, although the sign in dialog states…
5
votes
1 answer

Android: Google signin for a user without Google Play Services?

Is there a way of implementing Google signin that does not require Google Play Services? I'm aware that the official docs says that you need GPS: • https://developers.google.com/identity/sign-in/android/start-integrating however I also found…
1
2
3
18 19