What is the way in Java through with I can check if the user is logged in personal domain (google apps domain Ex.example.com) ?
Using gdata, I tried :
UserService userService = UserServiceFactory.getUserService();
User user = userService.getCurrentUser();
But this returns gmail user only.
For its reference please see UserServiceFactory, User Service & User.
Also, using gdata, I am getting the login url that is only of gmail login, only.
I also tried the other override method of UserService.createLoginURL :
userService.createLoginURL(request.getRequestURI(), "example.com")
But, this returns me only gmail login url :(
I suppose, gdata will not solve this problem. Is there any other way ?