We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better, and to empower everyone to share their knowledge.
private void loginWithToken(EzyUserLoginEvent event, String token) { logger.info("handle user login in with token"); try { byte[] usernameBytes = EzyAesCrypt.getDefault().decrypt( EzyBase64.decode(token), CommonConstants.TOKEN_ENCRYPTION_KEY.getBytes() ); String username = new String(usernameBytes); event.setUsername(username); } catch (Exception e) { throw new EzyLoginErrorException(EzyLoginError.INVALID_TOKEN); } } private String getAccessToken(EzyUserLoginEvent event) { Object loginData = event.getData(); if (loginData instanceof EzyObject) { return ((EzyObject) loginData).get("accessToken", String.class); } return null; }
2.2K Point(s)
1.2K Point(s)
313 Point(s)
178 Point(s)
138 Point(s)
Input your email to receive reset password link, or if you remember your password, you can click