how to allow multiple user login in @ringcentral/sdk@4.7.2
currently i am using JWT_TOKEN of one user but if I want to login with different user then i need to pass the JWT_token of other user also but if user is not devloper admin then how can i pass the JWT token.
const JWT_TOKEN = 'myJWTtoken'
platform .login({jwt:JWT_TOKEN})
.then(() => {setCallService({ user: user, platform });
postLogin(platform); cb && cb(); })
.catch((error) => {setCallService({ error: error });});