добавить этот код при запросе страницы входа в систему
SocialAuthConfig config = SocialAuthConfig.getDefault();
config.load(); // load your keys information
SocialAuthManager manager = new SocialAuthManager();
manager.setSocialAuthConfig(config);
String successUrl = "http://localhost:8080/yourapp/status
String url = manager.getAuthenticationUrl("facebook", successUrl);
session.setAttribute("authManager", manager);
перенаправить вашу страницу на URL для аутентификации
добавить этот код в / url статуса
SocialAuthManager manager = (SocialAuthManager)session.getAttribute("authManager");
AuthProvider provider = manager.connect(paramsMap);
// get profile
Profile p = provider.getUserProfile();
// you can obtain profile information
System.out.println(p.getFirstName());
// OR also obtain list of contacts
List<Contact> contactsList = provider.getContactList();