I am using SocialAuth libraries in my JSF application for providing 'login with google/facebook'. It requires to put the SocialAuthManager object in the session and then forward the request to Facebook for authentication. Once athentication is successfull facebook redirects to my application and then I get the old session inorder to get SocialAuthManager but I am not able to get the same session object.
The authentication request goes from a bean which is bind to the view www.myapp.com/signup.jsf and after authentication Facebook forwards the request to the servlet located at www.myapp/Signup_Servlet
The code which keeps SocialAuthManager inside the session object is:
// Create an instance of SocialAuthConfgi object
SocialAuthConfig config = SocialAuthConfig.getDefault();
// Load configuration. By default load the configuration from oauth_consumer.properties
config.load();
// Create an instance of SocialAuthManager and set config
SocialAuthManager manager = new SocialAuthManager();
manager.setSocialAuthConfig(config);
// Get provider(Facebook) URL to which you should redirect for authentication.
String providerUrl = manager.getAuthenticationUrl(Common.FACEBOOK_AS_ID, Common.SOCIAL_AUTH_REDIRECT_URL);
lgMgr.logDebug("Provider URL(Facebook): " + providerUrl);
FacesContext context = FacesContext.getCurrentInstance();
HttpSession session = (HttpSession)context.getExternalContext().getSession(false);
session.setAttribute(Common.SOCIAL_AUTH_MANAGER, manager);
The code inside the servlet to get the session and SocialAuthManager:
protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
lgMgr.logDebug("1. Getting session!");
HttpSession session = request.getSession(false);// Get session
if(session == null) {
lgMgr.logError("Session is NULL!");
throw new Exception("Session is NULL!");
}
lgMgr.logDebug("2. Got session, getting manager from session!");
SocialAuthManager manager = (SocialAuthManager) session.getAttribute(Common.SOCIAL_AUTH_MANAGER);// Get the social auth manager from session
}
The problem is if I am already logged in to facebook or google in a one of the 'tab' of the browser then this works perfectly OK. But if I am not logged in already then session becomes NULL and consequently 'manager' as well.
In other words if redirection from 'my application to facebook to my application' happens then it fails. If I am already logged in to facebook then redirection does not happens and it works.
Can someone help? NOTE: this works perfectly well in case of IE but does not work in case of Chrome & Mozila