Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ?

share|improve this question
What do you mean "this returns gmail user only"? If someone logs in using a non-gmail.com address, that will return a User object for them just fine. – Nick Johnson Feb 14 '11 at 3:00
No ! If I am login to example.com & not in Gmail. Then it is redirecting me to login page of gmail :( – user284291 Feb 14 '11 at 7:28

1 Answer

up vote 0 down vote accepted

What are your Authentication Options in the admin console (in "Application Settings")? Are you using "(Experimental) Federated Login" or "Google Accounts API" ?

In the second case, only Google accounts are accepted... See http://code.google.com/intl/fr/appengine/docs/java/users/overview.html#Authentication_Options for more information.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.