I thought Spring Social was based on the early Spring Security Facebook integration, and that all of the oatuh/login would be integrated/exposed via the Spring Security framework.
Are there any plans to provide this level of integration?
I thought Spring Social was based on the early Spring Security Facebook integration, and that all of the oatuh/login would be integrated/exposed via the Spring Security framework.
Are there any plans to provide this level of integration?
Hi Jabberz, see this thread http://forum.springsource.org/showthread.php?t=105565 Nothing offical though, but maybe helpful.
I have my signin controller in social working and signin method of singinservice doesn't do anything :
Code:public void signIn(String accountId) { ArrayList<GrantedAuthority> roles = new ArrayList<GrantedAuthority>(); roles.add(new GrantedAuthorityImpl("ROLE_USER")); SecurityContextHolder.getContext().setAuthentication(new FacebookAuthenticationToken(accountId, null, roles)); }
What is the best way to mark the user as authenticated from spring social??