Character Imag
NavTalk offers a variety of preset digital character avatars. When establishing a WebSocket connection, you can specify the desired character through URL parameters. The system will automatically load the corresponding character animations.
Configuration Method (Establishing Connection)
// Example: Passing license authorization and character avatar through URL parameters
const websocketUrlWithParams = `${websocketUrl}?license=${encodeURIComponent(license)}&characterName=${encodeURIComponent(characterPngName)}`;
const socket = new WebSocket(websocketUrlWithParams);
Parameter Explanation
Parameter name
Type
Value
Explanation
license
string
sk-xxx
User authorization key
characterName
string
navtalk.xxx
Specify the character image identifier to be used
Supported Characters

navtalk.Alex

navtalk.Ethan

navtalk.Leo

navtalk.Lily

navtalk.Emma

navtalk.Sophia

navtalk.Mia

navtalk.Chloe

navtalk.Zoe

navtalk.Ava
Stay tuned for more characters!
Last updated