0
votes

In my app I have users sign in with Google Plus to link their app account to G+. I do this so that the user can find friends.

I then store the user's Google Plus ID so that I can query all of the User's stored for those with certain Google+ Ids.

In my app, I want to be able to automatically get the users G+ profile info, without having to show a sign in dialog.

I get the G+ ID like this:

Plus.PeopleApi.getCurrentPerson(
                mGoogleApiClient).getId()

Is their any way I can sign-in for the user using later using their G+ ID?

1

1 Answers

1
votes

You can not sign-in a user without them seeing a prompt.