简体   繁体   中英

Azure Communication Service user management

I am reviewing ACS(Azure Communication Services) for our chat / video call feature and noticed that they don't provide a GUI management tool for registered users.

What should I do with this Identity management system where I want to restrict a certain user who is already registered?

Azure Communication Service is identity agnostic (meaning that it does not store your identities but provides it's own identifiers). This means that you need to keep mapping between your identities and ACS identities. You can issue access token for the ACS identity, to give it permission to use calling or chat.

The restriction of the action is bind to your identity. Azure Communication Services managing access to the primitives such as calling and chatting. This means, that on your application level you have to design whether your identity can access given meeting. If your application decides to grant the permission to join the meeting, user can create/reuse access token and join the meeting.

I'm not sure what you mean by "restrict". But, if you want to delete a created user, you can use the API to delete the identity object. At this time, there's no UI for this.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM