For my current web project, I am utilizing a String username as the UID
to connect to the channel in an Agora video call. However, I now need to incorporate individual cloud recording by Agora into the project. The challenge lies in the fact that cloud recording does not accept a string as the UID
, but rather expects it to be in integer format. This presents a difficulty in matching the record file with the corresponding user since the generated record file contains an integer UID
. As a solution, I am seeking assistance on how to map the username
to the integer UID
. Can anyone provide guidance on this issue?