Hello!I've just encountered a problem with authentication of users, who
have cyrilic symbols in their display name.I generate auth token at
server (php):$id = $user->getId();$name = $user->getName();$role =
\RTCUserRole::PUBLISHER;$room = 'some_room_name';$accountSecret =
'*****';$rtcAcc = $this->getRTCAccount(); //get initialized \RTCAccount
object$token =
$rtcAcc->getSession($room)->getAuthenticationToken($accountSecret,
$name, $id, $role);then I send this token to the client via flashvarsOn
c...