Hi There, Creating a session only creates a session between your server
and the LCCSservice. Through that session you can generate auth tokens,
which you passto your client apps for them to log in with.Typical flow
is (pseudo-code) :aM = new
AccountManager(ACCOUNT_URL);aM.login(DEV_USERNAME, DEV_PWD);sess =
aM.getSession(ROOM_NAME);// generate a token for a
usersess.getAuthenticationToken(ACCOUNT_SECRET, USER_NAME, USER_ID,
USER_ROLE);Check the developer guide for more details
:http://learn.adob...