Exemple #1
0
        /*
         * Handles the Google login re-direct
         */
        public async Task Handle_RedirectUriCaught(string code)
        {
            Tuple <User, string, string> parsedUser = await GoogleServices.GetUserProfile(code);

            await LoginAsGoogleUser(parsedUser);
        }
Exemple #2
0
 public static async void ProcessGoogleLogin(string code)
 {
     await GoogleServices.GetUserProfile(code);
 }