Adding authorized users to a newly created room?
so server side php has created new room, , want add list of authorized users , roles room in preparation them joining later.
can point me examples on how works?
thanks!
lccs doesn't have list of authorized users. application provide valid authentication tokens.
you can implement requirements, though, using external authentication.
basically server-side application keeps list of users can access room in, example, database table this:
create table room_users {
roomname varchar(64).
username varchar(64),
userid varchar(64),
role int
}
when user logs in through application portal , tries access room entry in room_users. if not there user cannot access room. if it's there can create external authentication token using values room_users row , pass flash application.
the sdk comes couple of examples using external authentication, can refer to.
More discussions in LiveCycle Collaboration Services
adobe
Comments
Post a Comment