When logging out / registering Google plus, iOS sdk asks for permission for an already provided user

I am using google plus iOS sdk to enter my application. When I exit g + and try to log in again, it displays a resolution screen (both in the G + application and in the browser). I can not use trysilentauthentication because my application supports login via facebook. How can I configure an application requesting this only once?

+3
source share
1 answer

trySilentAuthentication is the correct answer. If you are concerned about not allowing the user to add Facebook to their existing Google account in your application, then set the flag with the result of trySilentAuthentication, and if this flag is "Yes", then do not immediately process the response to finishedWithAuth: error - do this only when the button is clicked.

0
source

All Articles