Esempio n. 1
0
        public async void ProcessAuthenticationCompleted(GoogleOAuthToken token)
        {
            DismissViewController(true, null);

            var googleService = new GoogleService();

            _googleUser = await googleService.GetUserProfileAsync(token.TokenType, token.AccessToken);

            await ViewModel.SaveUserGoogleiOS(_googleUser);
        }