How to validate Login Details using Google apps API ?
Posted
by Pari
on Stack Overflow
See other posts from Stack Overflow
or by Pari
Published on 2010-04-05T05:49:56Z
Indexed on
2010/04/05
5:53 UTC
Read the original article
Hit count: 249
Hi,
I am using below code to to create Contact Service and to Validate login Details:
ContactsService obj_ContactService = new ContactsService(""); obj_ContactService.setUserCredentials(userEmail, password);
But even if user enters invalid detail above code does not throw any exception.
User get verified only when i call "Insert" query after adding whole contact details. But in my application i want to notify user immediately after user enters login details.
Thanx
© Stack Overflow or respective owner