public static class GoogleAuthenticationApi { public static string GetAuthenticationToken(string userName, string password, out bool isUserValid) { string response = GoogleRequestHelper.GetPostResult("https://www.google.com/accounts/clientlogin", String.Format("accountType=HOSTED_OR_GOOGLE&Email={0}&Passwd={1}&service=lh2&souce=sourceappname", userName, password), out isUserValid); if (response.Contains("Auth=")) { foreach (string line in response.Split(Environment.NewLine.ToCharArray())) { ...